diff --git a/userland/arch/x86_64/jmp.S b/userland/arch/x86_64/jmp.S index 7a31be3..c11e41e 100644 --- a/userland/arch/x86_64/jmp.S +++ b/userland/arch/x86_64/jmp.S @@ -1,4 +1,4 @@ -/* https://github.com/cirosantilli/linux-kernel-module-cheat#x86-jmp-instruction +/* https://github.com/cirosantilli/linux-kernel-module-cheat#x86-control-transfer-instructions * * Unconditional branch, address relative to the current address. */ diff --git a/userland/arch/x86_64/jmp_indirect.S b/userland/arch/x86_64/jmp_indirect.S index f4af3e5..25239c6 100644 --- a/userland/arch/x86_64/jmp_indirect.S +++ b/userland/arch/x86_64/jmp_indirect.S @@ -1,4 +1,4 @@ -/* https://github.com/cirosantilli/linux-kernel-module-cheat#x86-jmp-instruction +/* https://github.com/cirosantilli/linux-kernel-module-cheat#x86-control-transfer-instructions * * Unconditional branch to an absolute address stored in memory on in a register. */