mirror of
https://github.com/cirosantilli/linux-kernel-module-cheat.git
synced 2026-01-23 02:05:57 +01:00
7 lines
143 B
ArmAsm
7 lines
143 B
ArmAsm
/* https://cirosantilli.com/linux-kernel-module-cheat#arm-wfe-and-sev-instructions */
|
|
.global _start
|
|
_start:
|
|
wfe
|
|
mov x0, 0
|
|
bl exit
|