mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-12 03:05:37 +00:00
12 lines
133 B
ArmAsm
12 lines
133 B
ArmAsm
|
.text
|
||
|
.code16
|
||
|
.global _start, fwd
|
||
|
_start:
|
||
|
jcxz fwd
|
||
|
.rept 10
|
||
|
testl $0x12345678, %ss:0x76543210(,%eax,4)
|
||
|
.endr
|
||
|
fwd:
|
||
|
leave
|
||
|
ret
|