ack/mach/i86/ce/mach.c

28 lines
420 B
C
Raw Normal View History

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"
#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);
}
#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
#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>