Added EXIT, WRITE and BRK entry point
This commit is contained in:
parent
6f7d2bc2ee
commit
8b26f24e21
|
@ -1,5 +1,5 @@
|
||||||
.define .lino,.filn
|
.define .lino,.filn
|
||||||
.define EXIT
|
.define EXIT,WRITE,BRK
|
||||||
.define begtext,begdata,begbss
|
.define begtext,begdata,begbss
|
||||||
.define EARRAY,ERANGE,ESET,EIDIVZ,EHEAP,EILLINS,ECASE,EBADGTO
|
.define EARRAY,ERANGE,ESET,EIDIVZ,EHEAP,EILLINS,ECASE,EBADGTO
|
||||||
.define hol0,.reghp,.limhp,.trpim,.trppc
|
.define hol0,.reghp,.limhp,.trpim,.trppc
|
||||||
|
@ -56,6 +56,10 @@ EXIT:
|
||||||
move.l d0,-(sp)
|
move.l d0,-(sp)
|
||||||
jsr __exit
|
jsr __exit
|
||||||
|
|
||||||
|
WRITE: jmp __write
|
||||||
|
|
||||||
|
BRK: jmp __brk
|
||||||
|
|
||||||
.sect .data
|
.sect .data
|
||||||
begdata:
|
begdata:
|
||||||
hol0:
|
hol0:
|
||||||
|
|
Loading…
Reference in a new issue