Pristine Ack-5.5
[Ack-5.5.git] / mach / i86 / ce / mach.c
1 #define CODE_EXPANDER
2 #include <system.h>
3 #include "back.h"
4 #include "mach.h"
5
6 #ifdef DEBUG
7 arg_error( s, arg)
8 char *s;
9 int arg;
10 {
11         fprint( STDERR, "arg_error %s %d\n", s, arg);
12 }
13 #endif
14
15 int push_waiting = FALSE;
16
17 int fit_byte( val)
18 int val;
19 {
20         return( val >= -128 && val <= 127);
21 }
22
23 #define IEEEFLOAT
24 #define FL_MSL_AT_LOW_ADDRESS   0
25 #define FL_MSW_AT_LOW_ADDRESS   0
26 #define FL_MSB_AT_LOW_ADDRESS   0
27 #include <con_float>