mirror of
https://github.com/openhwgroup/cvw
synced 2025-01-24 13:34:28 +00:00
12 lines
147 B
ArmAsm
12 lines
147 B
ArmAsm
|
# Ross Thompson
|
||
|
# March 17, 2021
|
||
|
# Oklahoma State University
|
||
|
|
||
|
.section .text
|
||
|
.global fail
|
||
|
.type fail, @function
|
||
|
fail:
|
||
|
li gp, 1
|
||
|
li a0, -1
|
||
|
ecall
|