Files
linux-kernel-module-cheat/userland/arch/aarch64/add.S
Ciro Santilli 六四事件 法轮功 64855767b4 arm assembly: move some more in
2019-05-12 00:00:06 +00:00

10 lines
179 B
ArmAsm

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