ack/mach/sun3/ce/mach.c

31 lines
450 B
C
Raw Normal View History

1989-01-27 12:02:55 +00:00
#define CODE_EXPANDER
1988-09-28 16:47:47 +00:00
#include "mach.h"
#include <back.h>
#include <out.h>
1988-10-31 15:02:39 +00:00
#include <system.h>
1988-09-28 16:47:47 +00:00
#ifdef DEBUG
1988-09-28 16:47:47 +00:00
arg_error( s, arg)
char *s;
int arg;
{
1988-10-31 15:02:39 +00:00
fprint( STDERR, "arg_error %s %d\n", s, arg);
1988-09-28 16:47:47 +00:00
}
#endif
1988-09-28 16:47:47 +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);
}
*/
1989-07-31 15:10:36 +00:00
#include <con_float>