Changes binary notation in ControlUnit to make formatter happy

This commit is contained in:
2025-11-07 11:53:09 +01:00
parent 9c5313522d
commit 99c5e0c78c

View File

@@ -52,7 +52,7 @@ object OpCode extends ChiselEnum {
val OpR = "b0110011".U;
// Type J
val JAL = 0b1101111.U
val JAL = "b1101111".U
}
class ControlUnit() extends Module {