Browse Source
Rationale was that since we have the datapath for rc = (ra < rb), it's straightforward to also add rc = !(imm < rb) = (rb <= imm).cs250
5 changed files with 4 additions and 4 deletions
@ -0,0 +1 @@ |
|||
RA = !(sreg_t(cmp_trunc(SIMM)) < sreg_t(cmp_trunc(RB))); |
|||
@ -0,0 +1 @@ |
|||
RA = !(cmp_trunc(SIMM) < cmp_trunc(RB)); |
|||
@ -1 +0,0 @@ |
|||
RA = sreg_t(cmp_trunc(RB)) < sreg_t(cmp_trunc(SIMM)); |
|||
@ -1 +0,0 @@ |
|||
RA = cmp_trunc(RB) < cmp_trunc(SIMM); |
|||
Loading…
Reference in new issue