28 lines
420 B
C
28 lines
420 B
C
#define CODE_EXPANDER
|
|
#include <system.h>
|
|
#include "back.h"
|
|
#include "mach.h"
|
|
|
|
#ifdef DEBUG
|
|
arg_error( s, arg)
|
|
char *s;
|
|
int arg;
|
|
{
|
|
fprint( STDERR, "arg_error %s %d\n", s, arg);
|
|
}
|
|
#endif
|
|
|
|
int push_waiting = FALSE;
|
|
|
|
int fit_byte( val)
|
|
int val;
|
|
{
|
|
return( val >= -128 && val <= 127);
|
|
}
|
|
|
|
#define IEEEFLOAT
|
|
#define FL_MSL_AT_LOW_ADDRESS 0
|
|
#define FL_MSW_AT_LOW_ADDRESS 0
|
|
#define FL_MSB_AT_LOW_ADDRESS 0
|
|
#include <con_float>
|