aboutsummaryrefslogtreecommitdiff
path: root/KMemDriver/Utils.asm
diff options
context:
space:
mode:
authorsegfault <toni@impl.cc>2020-10-11 10:01:32 -0700
committersegfault <toni@impl.cc>2020-10-11 10:01:32 -0700
commit780127138ef45e4e0baee5a8616bd5c335f5ebe6 (patch)
treec9fe918868e59b3bdeeabb3c0533cf0a79465fda /KMemDriver/Utils.asm
parentd00677ccf8eb4029009dccac0f3102b87b230634 (diff)
Added simple x86_64-ASM source to get the current IP.
Diffstat (limited to 'KMemDriver/Utils.asm')
-rw-r--r--KMemDriver/Utils.asm11
1 files changed, 11 insertions, 0 deletions
diff --git a/KMemDriver/Utils.asm b/KMemDriver/Utils.asm
new file mode 100644
index 0000000..d95a64e
--- /dev/null
+++ b/KMemDriver/Utils.asm
@@ -0,0 +1,11 @@
+PUBLIC getCurrentRIP
+
+.code _text
+
+getCurrentRIP PROC PUBLIC
+pop rax
+push rax
+ret
+getCurrentRIP ENDP
+
+END \ No newline at end of file