New installation mechanism

This commit is contained in:
ceriel 1991-09-02 17:00:19 +00:00
parent 5d9dc323e9
commit ce87955d7b
6 changed files with 6 additions and 14 deletions

View file

@ -1,10 +1,2 @@
LIST
Makefile
compmodule
em_end.s
etext.s
edata.s
end.s
libem_s.a
trpstr.c
strscript

View file

@ -10,7 +10,7 @@ set.s
inn.s
fat.s
trp.s
trpstr.s
trpstr.c
mon.s
nop.s
dia.s

View file

@ -7,5 +7,5 @@
.sect .text
.fatal:
jsr (.trp)
jmp (_exit)
jmp (__exit)
.align 2

View file

@ -10,7 +10,7 @@
pea (fmt)
jsr (.diagnos)
add.l #8, sp
jmp (_exit)
jmp (__exit)
.sect .data
fmt: .asciz "system call %d not implemented\n"

View file

@ -40,11 +40,11 @@ fmt: .asciz "%s\n"
rts
9:
move.l d0,-(sp)
jsr (.trpstr)
jsr (__trpstr)
move.l d0,(sp)
pea (fmt)
jsr (.diagnos)
lea (4, sp), sp
illegal
jsr (_exit)
jsr (__exit)
.align 2

View file

@ -1,6 +1,6 @@
#include <em_abs.h>
char *
trpstr(d)
_trpstr(d)
{
switch(d)
{