Files @ r3235:3a1bf691e08d
Branch filter:

Location: cpp/openttd-patchpack/source/win64.asm

tron
(svn r3908) Fix last commit (I'm saying that way too often *sigh*) (Pointed out by Celestar)
		.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