From 4d714203703ed074e04ba69bbef86ef88aed507b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ciro=20Santilli=20=E5=85=AD=E5=9B=9B=E4=BA=8B=E4=BB=B6=20?= =?UTF-8?q?=E6=B3=95=E8=BD=AE=E5=8A=9F?= Date: Sat, 15 Jun 2019 00:00:00 +0000 Subject: [PATCH] x86 asm: fix jmp example links --- userland/arch/x86_64/jmp.S | 2 +- userland/arch/x86_64/jmp_indirect.S | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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. */