Skip to content

Commit

Permalink
add unratified B extension
Browse files Browse the repository at this point in the history
  • Loading branch information
ved-rivos committed Jan 11, 2024
1 parent 0d4b529 commit 42c13b4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions model/riscv_sys_regs.sail
Original file line number Diff line number Diff line change
Expand Up @@ -188,10 +188,10 @@ function haveNExt() -> bool = misa.N() == 0b1
/* see below for F and D (and Z*inx counterparts) extension tests */

/* BitManip extension support. */
function haveZba() -> bool = haveBExt()
function haveZbb() -> bool = haveBExt()
function haveZba() -> bool = true
function haveZbb() -> bool = true
function haveZbc() -> bool = true
function haveZbs() -> bool = haveBExt()
function haveZbs() -> bool = true

/* Zfa (additional FP) extension */
function haveZfa() -> bool = true
Expand Down

0 comments on commit 42c13b4

Please sign in to comment.