When running a piece of code such as:
li t0, 1
li t1, 2
sgt t0, t1, t0
RARS will run it just fine, yet FPGRARS will complain:
[error]: Unknown instruction 'sgt'
--> test.asm at line 3, column 2
2 | li t1, 2
3 | sgt t0, t1, t
......^ Here
The same will happen for its unsigned counterpart, sgtu.
li t0, 1
li t1, 2
sgtu t0, t1, t0
[error]: Unknown instruction 'sgtu'
--> fpgrars_test.asm at line 3, column 2
2 | li t1, 2
3 | sgtu t0, t1, t
......^ Here
Strangely, this does not happen with stgz. The code runs just fine.
When running a piece of code such as:
RARS will run it just fine, yet FPGRARS will complain:
The same will happen for its unsigned counterpart, sgtu.
Strangely, this does not happen with stgz. The code runs just fine.
Finished in 0ms