mirror of
https://git.wownero.com/wownero/RandomWOW.git
synced 2025-01-03 13:48:54 +00:00
18 lines
267 B
ArmAsm
18 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, rsi
|
||
|
#include "asm/squareHash.inc"
|