mirror of
https://github.com/cirosantilli/linux-kernel-module-cheat.git
synced 2026-01-23 02:05:57 +01:00
10 lines
210 B
ArmAsm
10 lines
210 B
ArmAsm
/* https://cirosantilli.com/linux-kernel-module-cheat#arm-b-instruction */
|
|
|
|
#include <lkmc.h>
|
|
LKMC_PROLOGUE
|
|
/* Jump over the fail. 26-bit PC-relative. */
|
|
b .Lok
|
|
LKMC_ASSERT_FAIL
|
|
.Lok:
|
|
LKMC_EPILOGUE
|