mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-03 22:06:50 +00:00
14 lines
128 B
ArmAsm
14 lines
128 B
ArmAsm
.text
|
|
.global ___trap0
|
|
___trap0:
|
|
syscall
|
|
cmp 0,d0
|
|
beq .L0
|
|
mov d0,(_errno)
|
|
.L0:
|
|
#ifdef __mn10300__
|
|
rets
|
|
#else
|
|
rts
|
|
#endif
|