ack/mach/m68k4/libsys/call.s
1985-03-21 14:05:03 +00:00

25 lines
280 B
ArmAsm

.define call
.define callc
.define calle
.define cerror
.extern call
.extern callc
.extern calle
.extern cerror
.extern _errno
.text
call: trap #0
bcs cerror
rts
callc:
trap #0
bcs cerror
clr.l d0
rts
calle:
trap #0
cerror:
move.l d0,_errno
move.l #-1,d0
rts