aboutsummaryrefslogtreecommitdiff
path: root/KMemDriver/Utils.asm
diff options
context:
space:
mode:
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