mirror of
https://github.com/cirosantilli/linux-kernel-module-cheat.git
synced 2026-01-24 18:51:36 +01:00
10 lines
193 B
ArmAsm
10 lines
193 B
ArmAsm
/* https://cirosantilli.com/linux-kernel-module-cheat#gnu-gas-assembler-immediates */
|
|
|
|
#include <lkmc.h>
|
|
LKMC_PROLOGUE
|
|
mov x0, 1
|
|
mov x0, 0x1
|
|
mov x0, 1
|
|
mov x0, 0x1
|
|
LKMC_EPILOGUE
|