ack/mach/m68020/ce/mach.c

30 lines
433 B
C
Raw Normal View History

1989-01-27 12:41:43 +00:00
#define CODE_EXPANDER
1988-08-18 14:33:57 +00:00
#include "mach.h"
#include <back.h>
#include <system.h>
1988-08-18 14:33:57 +00:00
1989-02-02 12:49:21 +00:00
#ifdef DEBUG
1988-08-18 14:33:57 +00:00
arg_error( s, arg)
char *s;
int arg;
{
fprint( STDERR, "arg_error %s %d\n", s, arg);
1988-08-18 14:33:57 +00:00
}
1989-02-02 12:49:21 +00:00
#endif
1988-08-18 14:33:57 +00:00
/*
do_open( filename)
char *filename;
{
if ( filename == (char *)0 || !sys_open( filename, OP_WRITE, &codefile))
return( 0);
fprint( codefile, ".sect .text; .sect .rom; .sect .data; .sect .bss\n");
return( 1);
}
*/
1988-09-14 14:06:31 +00:00
#include <float_cst>