Files
linux-kernel-module-cheat/userland/arch/x86_64/nop.S
2019-07-07 00:00:01 +00:00

14 lines
290 B
ArmAsm

/* https://cirosantilli.com/linux-kernel-module-cheat#nop-instructions */
#include <lkmc.h>
LKMC_PROLOGUE
nop
nop
/* Other nops
* http://stackoverflow.com/questions/11910501/why-did-gcc-generate-mov-eax-eax-and-what-does-it-mean
*/
mov %rax, %rax
LKMC_EPILOGUE