Files
linux-kernel-module-cheat/userland/arch/x86_64/nop.S
Ciro Santilli 六四事件 法轮功 76c7cfe5aa x86 asm: move NOP in from x86-assembly-cheat
2019-06-16 00:00:05 +00:00

14 lines
300 B
ArmAsm

/* https://github.com/cirosantilli/linux-kernel-module-cheat#x86-nop-instruction */
#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