RandomWOW/src/squareHash.S
2019-02-18 08:44:28 +01:00

17 lines
267 B
ArmAsm

.intel_syntax noprefix
#if defined(__APPLE__)
.text
#else
.section .text
#endif
#if defined(__WIN32__) || defined(__APPLE__)
#define DECL(x) _##x
#else
#define DECL(x) x
#endif
.global DECL(squareHash)
DECL(squareHash):
mov rcx, rdi
#include "asm/squareHash.inc"