Files
linux-kernel-module-cheat/userland/arch/aarch64/add.S
2019-05-12 00:00:08 +00:00

10 lines
168 B
ArmAsm

/* https://github.com/cirosantilli/linux-kernel-module-cheat#userland-assembly */
#include "common.h"
ENTRY
mov x0, 1
add x1, x0, 2
ASSERT_EQ(x1, 3)
EXIT