Files
linux-kernel-module-cheat/userland/arch/x86_64/jmp.S
Ciro Santilli 六四事件 法轮功 9dd63f6f54 x86 asm: move jmp from x86-assembly-cheat
2019-06-12 00:00:03 +00:00

13 lines
254 B
ArmAsm

/* https://github.com/cirosantilli/linux-kernel-module-cheat#x86-jmp-instruction
*
* Unconditional branch, address relative to the current address.
*/
#include <lkmc.h>
LKMC_PROLOGUE
jmp after_fail
LKMC_ASSERT_FAIL
after_fail:
LKMC_EPILOGUE