Previous 199869 Revisions Next

r21736 Saturday 9th March, 2013 at 04:29:28 UTC by R. Belmont
(nw)
[src/mess/machine]3c505.c

trunk/src/mess/machine/3c505.c
r21735r21736
3535
3636static UINT16 uint16_from_le(UINT16 value)
3737{
38   return ((value&0x00ff)<<8)|((value&0xff00)>>8);
38   return value;
3939}
4040#else
4141static UINT16 uint16_to_le(UINT16 value)
r21735r21736
4545
4646static UINT16 uint16_from_le(UINT16 value)
4747{
48   return value;
48   return ((value&0x00ff)<<8)|((value&0xff00)>>8);
4949}
5050#endif
5151

Previous 199869 Revisions Next


© 1997-2024 The MAME Team