removed stop.s
This commit is contained in:
parent
6e551adf21
commit
a951391408
2 changed files with 5 additions and 2 deletions
|
@ -50,7 +50,6 @@ error.s
|
||||||
unknown.s
|
unknown.s
|
||||||
fat.s
|
fat.s
|
||||||
trp.s
|
trp.s
|
||||||
stop.s
|
|
||||||
print.s
|
print.s
|
||||||
ret6.s
|
ret6.s
|
||||||
ret8.s
|
ret8.s
|
||||||
|
|
|
@ -1,7 +1,8 @@
|
||||||
.sect .text; .sect .rom; .sect .data; .sect .bss
|
.sect .text; .sect .rom; .sect .data; .sect .bss
|
||||||
.sect .text
|
.sect .text
|
||||||
.define .trp
|
.define .trp
|
||||||
.extern .trppc, .stop
|
.define .stop
|
||||||
|
.extern .trppc
|
||||||
|
|
||||||
! ax is trap number
|
! ax is trap number
|
||||||
.trp:
|
.trp:
|
||||||
|
@ -15,3 +16,6 @@
|
||||||
ret
|
ret
|
||||||
2:
|
2:
|
||||||
call .stop
|
call .stop
|
||||||
|
|
||||||
|
.stop:
|
||||||
|
int 3
|
||||||
|
|
Loading…
Add table
Reference in a new issue