Merge branch 'main' of https://github.com/openhwgroup/cvw into main

This commit is contained in:
Noah Limpert 2023-04-13 17:00:48 -07:00
commit bcbbcd5a30

View File

@ -31,6 +31,11 @@ main:
#bseti t0, zero, 14 # turn on FPU
csrs mstatus, t0
#Pull denormalized FP number from memory and pass it to fclass.S for coverage
la t0, TestData
flw ft0, 0(t0)
fclass.s t1, ft0
# Test legal instructions not covered elsewhere
flq ft0, 0(a0)
flh ft0, 8(a0)
@ -98,3 +103,7 @@ main:
j done
.section .data
.align 3
TestData:
.int 0x00100000 #Denormalized FP number