Initial revision
This commit is contained in:
16
util/ceg/ce_back/obj_back/rom2.c
Normal file
16
util/ceg/ce_back/obj_back/rom2.c
Normal file
@@ -0,0 +1,16 @@
|
||||
#include "mach.h"
|
||||
#include "back.h"
|
||||
|
||||
rom2( w)
|
||||
TWO_BYTES w;
|
||||
{
|
||||
#ifdef BYTES_REVERSED
|
||||
rom1( (char) ( ( unsigned short)w>>8));
|
||||
rom1( (char) w);
|
||||
#else
|
||||
rom1( (char) w);
|
||||
rom1( (char) ( ( unsigned short)w>>8));
|
||||
#endif
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user