mirror of
https://github.com/xmrig/xmrig.git
synced 2026-01-23 14:52:52 -05:00
12 lines
162 B
ArmAsm
12 lines
162 B
ArmAsm
/* RISC-V - test if the prefetch instruction is present */
|
|
|
|
.text
|
|
.option arch, rv64gc_zicbop
|
|
.global main
|
|
|
|
main:
|
|
lla x5, main
|
|
prefetch.r (x5)
|
|
mv x10, x0
|
|
ret
|