mirror of
https://github.com/cirosantilli/linux-kernel-module-cheat.git
synced 2026-01-26 11:41:35 +01:00
10 lines
160 B
ArmAsm
10 lines
160 B
ArmAsm
/* https://github.com/cirosantilli/arm-assembly-cheat#immediates */
|
|
|
|
#include "common.h"
|
|
ENTRY
|
|
mov x0, 1
|
|
mov x0, 0x1
|
|
mov x0, 1
|
|
mov x0, 0x1
|
|
EXIT
|