mirror of
https://github.com/xmrig/xmrig.git
synced 2026-04-17 21:12:58 -04:00
13 lines
215 B
ArmAsm
13 lines
215 B
ArmAsm
/* RISC-V - test if the vector bit manipulation extension is present */
|
|
|
|
.text
|
|
.option arch, rv64gcv_zvkned
|
|
.global main
|
|
|
|
main:
|
|
vsetivli zero, 8, e32, m1, ta, ma
|
|
vaesem.vv v0, v0
|
|
vaesdm.vv v0, v0
|
|
li x10, 0
|
|
ret
|