Initial revision
This commit is contained in:
15
util/ceg/ce_back/obj_back/rom4.c
Normal file
15
util/ceg/ce_back/obj_back/rom4.c
Normal file
@@ -0,0 +1,15 @@
|
||||
#include "mach.h"
|
||||
|
||||
rom4( l)
|
||||
FOUR_BYTES l;
|
||||
{
|
||||
#ifdef WORDS_REVERSED
|
||||
rom2( (short) ((unsigned long)l>>16));
|
||||
rom2( (short) l);
|
||||
#else
|
||||
rom2( (short) l);
|
||||
rom2( (short) ((unsigned long)l>>16));
|
||||
#endif
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user