mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-01-06 12:09:26 +08:00
14 lines
151 B
ArmAsm
14 lines
151 B
ArmAsm
|
.text
|
||
|
.intel_syntax noprefix
|
||
|
.global _start
|
||
|
_start:
|
||
|
ret
|
||
|
|
||
|
apic_read:
|
||
|
mov eax, [edi*4+APIC_BASE]
|
||
|
ret
|
||
|
|
||
|
apic_write:
|
||
|
mov [edi*4+APIC_BASE], esi
|
||
|
ret
|