ack/mach/m68020/ce/mach.c

25 lines
369 B
C
Raw Normal View History

1988-08-18 14:33:57 +00:00
#include "mach.h"
#include <back.h>
#include <stdio.h>
arg_error( s, arg)
char *s;
int arg;
{
fprintf( stderr, "arg_error %s %d\n", s, arg);
}
/*
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);
}
*/