Skip to content

Commit

Permalink
Maybe zbb instead of b
Browse files Browse the repository at this point in the history
  • Loading branch information
swenson committed Nov 25, 2024
1 parent 1cbb4b1 commit 9269929
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -99,8 +99,6 @@ def build(self, isa_yaml, platform_yaml):
self.isa += 'f'
if 'D' in ispec['ISA']:
self.isa += 'd'
if 'B' in ispec['ISA']:
self.isa += 'b'
if shutil.which(self.objdump_path) is None:
logger.error(self.objdump_path + \
': executable not found. Please check environment setup.')
Expand Down
4 changes: 2 additions & 2 deletions emulator/compliance-test/dut-plugin/spike/riscof_spike.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,8 +138,8 @@ def build(self, isa_yaml, platform_yaml):
self.isa += 'd'
if 'C' in ispec['ISA']:
self.isa += 'c'
if 'B' in ispec['ISA']:
self.isa += 'b'
if 'Zbb' in ispec['ISA']:
self.isa += '_zbb'
if 'Zicsr' in ispec['ISA']:
self.isa += '_zicsr'
if 'Zifencei' in ispec['ISA']:
Expand Down
2 changes: 1 addition & 1 deletion emulator/compliance-test/dut-plugin/spike/spike_isa.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
hart_ids: [0]
hart0:
ISA: RV32IMCBUZicsr_Zifencei
ISA: RV32IMCUZbb_Zicsr_Zifencei
physical_addr_sz: 32
User_Spec_Version: "2.3"
supported_xlen: [32]
Expand Down

0 comments on commit 9269929

Please sign in to comment.