franks version

This commit is contained in:
ceriel 1987-03-27 09:58:03 +00:00
parent 2aa64be3a6
commit 0cc30a7e49
2 changed files with 7 additions and 7 deletions

View file

@ -9,9 +9,9 @@
move.l (sp)+,a0
pea fmt
jsr .diagnos
add #8,sp
add.l #8,sp
jmp EXIT
.sect .data
fmt: .asciz "system call %d not implemented"
fmt: .asciz "system call %d not implemented\n"
.align 2

View file

@ -7,12 +7,12 @@
.sect .text
.nop:
pea 4(sp)
move.l hol0,-(sp)
move.l .lino,-(sp)
pea fmt
jsr .diagnos
add.l #12,sp
lea 12(sp),sp
rts
.sect .data
fmt: .asciz "test %d, sp %d\n"
fmt: .asciz "test %d, sp 0x%x.\n"
.align 2