src/win64.asm
author bjarni
Tue, 23 Jan 2007 13:26:12 +0000
changeset 5809 f6bb84b5d6fc
parent 5475 2e6990a8c7c4
child 6171 fb9997933c24
permissions -rw-r--r--
(svn r8371) -Codechange: [autoreplace GUI] moved the autoreplace GUI to a file of it's own
Note: it's the same as r8363, only this time the svn history of autoreplace should be preserved
		.CODE

PUBLIC	_get_save_esp
_get_save_esp:
		MOV	RAX,RSP
		RET

PUBLIC	_rdtsc
_rdtsc:
		RDTSC
		MOV RCX,RDX
		SHL RCX,32
		AND RAX,0FFFFFFFFh
		OR  RAX,RCX
		RET

		END