mirror of
https://github.com/cirosantilli/linux-kernel-module-cheat.git
synced 2026-01-23 02:05:57 +01:00
14 lines
290 B
ArmAsm
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
|