compare: fix incorrect CR bit order.

The regression was introduced by b3255def.
main
Jean-François Nguyen 2 years ago
parent a9a17377b7
commit c743c932e7

@ -26,10 +26,10 @@ class CompareSpec(InsnSpec, Elaboratable):
src_a = Signal(64)
src_b = Signal(64)
result = Record([
("lt", 1),
("gt", 1),
("eq_", 1),
("so", 1),
("eq_", 1),
("gt", 1),
("lt", 1),
])

# Operand A : (RA) or EXTS((RA)(32:63)) or EXTZ((RA)(32:63)) or EXTZ((RA)(56:63))

Loading…
Cancel
Save