Skip to content

Commit 2733eaa

Browse files
committed
Cleanup.
1 parent 171955f commit 2733eaa

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ tt_gds:
1414
$(TT_TOOL) --create-user-config --ihp
1515
$(TT_TOOL) --harden --ihp
1616
nix:
17-
nix develop --command make all
17+
nix develop --command make borg_test tt_test tt_docs #tt_gds
1818
clean:
1919
git clean -dfx
2020
.PHONY: all borg_test clean generate_verilog just_test test tt_docs tt_gds tt_test tt_test_only \

borg/src/Borg.scala

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ package borg
55

66
import chisel3._
77
import chisel3.util.MuxLookup
8-
//import hardfloat._
98

109
class Borg extends Module {
1110
val io = IO(new Bundle {
@@ -55,7 +54,7 @@ class Borg extends Module {
5554
io.data_out := MuxLookup(io.address, 0.U(32.W)) (Seq(
5655
ADDR_A -> operand_A_bits,
5756
ADDR_B -> operand_B_bits,
58-
ADDR_RESULT -> result_bits // Output the 32-bit result
57+
ADDR_RESULT -> result_bits
5958
))
6059

6160
io.data_ready := true.B

test/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
/tags
2+
/tb.fst

0 commit comments

Comments
 (0)