Browse Source
- This makes Spike more consistent with its zero-extending behavior
regarding other SP operations when placed into the 64b f-registers.
pull/34/head
2 changed files with 2 additions and 2 deletions
@ -1,3 +1,3 @@ |
|||
require_extension('F'); |
|||
require_fp; |
|||
WRITE_FRD(MMU.load_int32(RS1 + insn.i_imm())); |
|||
WRITE_FRD(MMU.load_uint32(RS1 + insn.i_imm())); |
|||
|
|||
@ -1,3 +1,3 @@ |
|||
require_extension('F'); |
|||
require_fp; |
|||
WRITE_FRD(RS1); |
|||
WRITE_FRD(zext32(RS1)); |
|||
|
|||
Loading…
Reference in new issue