RandomWOW/src/squareHash.asm
2019-02-19 23:12:56 +01:00

13 lines
No EOL
108 B
NASM

IFDEF RAX
PUBLIC squareHash
.code
squareHash PROC
include asm/squareHash.inc
squareHash ENDP
ENDIF
END