mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-28 21:49:33 +00:00
10 lines
159 B
ArmAsm
10 lines
159 B
ArmAsm
# Test linking incompatible object file types.
|
|
|
|
.text
|
|
.global _start
|
|
_start:
|
|
movhi r2, %hiadj(foo)
|
|
addi r2, r2, %lo(foo)
|
|
ldw r2, 0(r2)
|
|
cmpeq r2, r2, zero
|