win64.asm
author tron
Fri, 24 Mar 2006 08:00:45 +0000
changeset 3314 6aaeba4b92e8
parent 2482 374f6395847d
permissions -rw-r--r--
(svn r4077) Add GetIndustry{Index,ByTile}() to get the industry index resp. the industry from a tile
		.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