aboutsummaryrefslogtreecommitdiff
path: root/KMemDriver/Utils.asm
blob: b7c344eb5d5df2d6b0b61ba60a4a96bf42c303a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
PUBLIC getNextRIP

.code _text

getNextRIP PROC PUBLIC
pop rax
push rax
ret
getNextRIP ENDP

END