1989-01-27 13:09:37 +00:00
|
|
|
#define CODE_EXPANDER
|
1988-11-08 14:09:24 +00:00
|
|
|
#include <system.h>
|
1989-01-27 13:09:37 +00:00
|
|
|
#include "back.h"
|
1988-11-08 14:09:24 +00:00
|
|
|
#include "mach.h"
|
|
|
|
|
1989-02-07 11:42:28 +00:00
|
|
|
#ifdef DEBUG
|
1988-11-08 14:09:24 +00:00
|
|
|
arg_error( s, arg)
|
|
|
|
char *s;
|
|
|
|
int arg;
|
|
|
|
{
|
|
|
|
fprint( STDERR, "arg_error %s %d\n", s, arg);
|
|
|
|
}
|
1989-02-07 11:42:28 +00:00
|
|
|
#endif
|
1988-11-08 14:09:24 +00:00
|
|
|
|
|
|
|
int push_waiting = FALSE;
|
|
|
|
|
|
|
|
int fit_byte( val)
|
|
|
|
int val;
|
|
|
|
{
|
|
|
|
return( val >= -128 && val <= 127);
|
|
|
|
}
|
1989-01-17 11:05:02 +00:00
|
|
|
|
1989-10-26 11:03:30 +00:00
|
|
|
#define IEEEFLOAT
|
|
|
|
#define FL_MSL_AT_LOW_ADDRESS 0
|
|
|
|
#define FL_MSW_AT_LOW_ADDRESS 0
|
|
|
|
#define FL_MSB_AT_LOW_ADDRESS 0
|
1989-07-31 11:22:43 +00:00
|
|
|
#include <con_float>
|