mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-04 16:50:57 +00: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
|