You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
160 B
ArmAsm
11 lines
160 B
ArmAsm
2 weeks ago
|
#include <sys/syscall.h>
|
||
|
|
||
|
.globl _start
|
||
|
|
||
|
_start:
|
||
|
movq $__NR_reboot, %rax;
|
||
|
movq $0xfee1dead, %rdi;
|
||
|
movq $0x05121996, %rsi;
|
||
|
movq $0x4321fedc, %rdx;
|
||
|
syscall;
|