mirror of
https://github.com/justinian/jsix.git
synced 2025-12-10 00:14:32 -08:00
13 lines
157 B
ArmAsm
13 lines
157 B
ArmAsm
|
|
section .text
|
|
global do_the_set_registers
|
|
do_the_set_registers:
|
|
mov rax, 0xdeadbeef0badc0de
|
|
mov r8, rcx
|
|
mov r9, rdi
|
|
|
|
global _halt
|
|
_halt:
|
|
hlt
|
|
jmp _halt
|