mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-11-26 05:20:30 +00:00
19 lines
201 B
ArmAsm
19 lines
201 B
ArmAsm
.include "t-macros.i"
|
|
|
|
start
|
|
|
|
loadfp $f1, 1.0
|
|
loadfp $f2, 2.0
|
|
|
|
test_max1:
|
|
clearfcsr
|
|
max.s $f3, $f1, $f2
|
|
checkfp 0 $f3 2.0
|
|
|
|
test_max2:
|
|
clearfcsr
|
|
max.s $f3, $f2, $f1
|
|
checkfp 0 $f3 2.0
|
|
|
|
exit0
|