mirror of
https://github.com/xmrig/xmrig.git
synced 2025-12-14 02:22:50 -05:00
Fixed crash when use ASM code for MSYS2, thanks @SChernykh.
This commit is contained in:
15
src/crypto/asm/cnv2_main_loop_win.S
Normal file
15
src/crypto/asm/cnv2_main_loop_win.S
Normal file
@@ -0,0 +1,15 @@
|
||||
#define ALIGN .align
|
||||
.intel_syntax noprefix
|
||||
.section .text
|
||||
.global cnv2_mainloop_ivybridge_asm
|
||||
.global cnv2_mainloop_ryzen_asm
|
||||
|
||||
ALIGN 16
|
||||
cnv2_mainloop_ivybridge_asm:
|
||||
#include "cnv2_main_loop_ivybridge.inc"
|
||||
ret 0
|
||||
|
||||
ALIGN 16
|
||||
cnv2_mainloop_ryzen_asm:
|
||||
#include "cnv2_main_loop_ryzen.inc"
|
||||
ret 0
|
||||
Reference in New Issue
Block a user