From: ceriel Date: Tue, 30 Jun 1992 15:22:07 +0000 (+0000) Subject: No system-calls from libem X-Git-Tag: release-5-5~448 X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=ab38665421e8c741d76a82111208b7cc69b1d9d6;p=ack.git No system-calls from libem --- diff --git a/mach/m68020/libem/dia.s b/mach/m68020/libem/dia.s index 54197e5f5..f2d18dc5a 100644 --- a/mach/m68020/libem/dia.s +++ b/mach/m68020/libem/dia.s @@ -112,7 +112,7 @@ putchar: move.l #1, -(sp) pea (11,sp) move.l #1, -(sp) - jsr (__write) + jsr (WRITE) lea (12, sp), sp rts .align 2 diff --git a/mach/m68020/libem/fat.s b/mach/m68020/libem/fat.s index 12fb17619..378dcdd99 100644 --- a/mach/m68020/libem/fat.s +++ b/mach/m68020/libem/fat.s @@ -7,5 +7,5 @@ .sect .text .fatal: jsr (.trp) - jmp (__exit) + jmp (EXIT) .align 2 diff --git a/mach/m68020/libem/mon.s b/mach/m68020/libem/mon.s index 29a37da50..5c5f36984 100644 --- a/mach/m68020/libem/mon.s +++ b/mach/m68020/libem/mon.s @@ -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" diff --git a/mach/m68020/libem/shp.s b/mach/m68020/libem/shp.s index 16fcf8fef..9ea737c26 100644 --- a/mach/m68020/libem/shp.s +++ b/mach/m68020/libem/shp.s @@ -16,7 +16,7 @@ EHEAP=17 move.l a0,-(sp) move.l d1, -(sp) move.l d1,(.limhp) - jsr (__brk) ! allocate 1K bytes of extra storage + jsr (BRK) ! allocate 1K bytes of extra storage add.l #4,sp move.l (sp)+,a0 tst.l d0 diff --git a/mach/m68020/libem/trp.s b/mach/m68020/libem/trp.s index 0e7e27bf7..bee0eccdf 100644 --- a/mach/m68020/libem/trp.s +++ b/mach/m68020/libem/trp.s @@ -46,5 +46,5 @@ fmt: .asciz "%s\n" jsr (.diagnos) lea (4, sp), sp illegal - jsr (__exit) + jmp (EXIT) .align 2