mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-03 10:49:58 +00:00
10 lines
94 B
ArmAsm
10 lines
94 B
ArmAsm
|
.text
|
||
|
.global ___trap0
|
||
|
___trap0:
|
||
|
syscall
|
||
|
cmp 0,d0
|
||
|
beq noerr
|
||
|
mov d0,(_errno)
|
||
|
noerr:
|
||
|
rts
|