Initial revision

This commit is contained in:
ceriel
1988-08-18 14:33:57 +00:00
parent 367e4ac01c
commit a1684f6d0b
7 changed files with 1426 additions and 0 deletions

24
mach/m68020/ce/mach.c Normal file
View File

@@ -0,0 +1,24 @@
#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);
}
*/