src/win64.asm
author celestar
Fri, 23 Feb 2007 08:37:33 +0000
changeset 6121 2aae24b0881f
parent 5475 2e6990a8c7c4
child 6171 fb9997933c24
permissions -rw-r--r--
(svn r8857) -Documentation: Added some doxygen @file tags, repaired others (the @file tag MUST be found before any line of code, that includes preprocessor directives).
		.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