mirror of
https://github.com/cirosantilli/linux-kernel-module-cheat.git
synced 2026-01-26 19:51:35 +01:00
10 lines
185 B
ArmAsm
10 lines
185 B
ArmAsm
/* https://github.com/cirosantilli/linux-kernel-module-cheat#gnu-gas-assembler-immediates */
|
|
|
|
#include "common.h"
|
|
ENTRY
|
|
mov x0, 1
|
|
mov x0, 0x1
|
|
mov x0, 1
|
|
mov x0, 0x1
|
|
EXIT
|