mirror of
https://github.com/cirosantilli/linux-kernel-module-cheat.git
synced 2026-01-23 10:15:57 +01:00
10 lines
201 B
ArmAsm
10 lines
201 B
ArmAsm
/* https://github.com/cirosantilli/linux-kernel-module-cheat#arm-b-instruction */
|
|
|
|
#include "common.h"
|
|
LKMC_ENTRY
|
|
/* Jump over the fail. 26-bit PC-relative. */
|
|
b ok
|
|
LKMC_FAIL
|
|
ok:
|
|
LKMC_EXIT
|