diff options
author | segfault <toni@impl.cc> | 2020-10-11 10:01:32 -0700 |
---|---|---|
committer | segfault <toni@impl.cc> | 2020-10-11 10:01:32 -0700 |
commit | 780127138ef45e4e0baee5a8616bd5c335f5ebe6 (patch) | |
tree | c9fe918868e59b3bdeeabb3c0533cf0a79465fda /KMemDriver/Utils.asm | |
parent | d00677ccf8eb4029009dccac0f3102b87b230634 (diff) |
Added simple x86_64-ASM source to get the current IP.
Diffstat (limited to 'KMemDriver/Utils.asm')
-rw-r--r-- | KMemDriver/Utils.asm | 11 |
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 |