Skip to content

Commit

Permalink
Bump difftest (#2720)
Browse files Browse the repository at this point in the history
This change will fix missing generated DifftestMacros.v when generating
RTL.
  • Loading branch information
klin02 committed Mar 1, 2024
1 parent b15e4c0 commit a42a7ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion difftest
Submodule difftest updated 44 files
+33 −0 .github/workflows/format.yml
+88 −36 .github/workflows/main.yml
+1 −2 .mill-version
+48 −0 .scalafmt.conf
+15 −4 Makefile
+11 −4 README.md
+1 −1 build.sc
+1 −0 palladium.mk
+1 −1 scripts/coverage/statistics.py
+4 −0 scripts/palladium/argConfigs.qel
+2 −0 scripts/palladium/clock_gen.xel
+19 −0 scripts/palladium/compilerOptions.qel
+6 −0 scripts/palladium/run.tcl
+11 −0 scripts/palladium/run_debug.tcl
+158 −0 src/main/scala/Batch.scala
+34 −8 src/main/scala/Bundles.scala
+267 −100 src/main/scala/DPIC.scala
+68 −69 src/main/scala/Difftest.scala
+175 −145 src/main/scala/Gateway.scala
+100 −92 src/main/scala/Squash.scala
+78 −76 src/main/scala/common/Flash.scala
+6 −5 src/main/scala/common/LogPerfControl.scala
+80 −73 src/main/scala/common/Mem.scala
+4 −2 src/main/scala/common/SDCard.scala
+9 −11 src/main/scala/common/WiringControl.scala
+7 −0 src/test/csrc/common/SimJTAG.cpp
+1 −0 src/test/csrc/common/common.h
+122 −0 src/test/csrc/common/compress.cpp
+7 −0 src/test/csrc/common/compress.h
+7 −0 src/test/csrc/common/flash.cpp
+11 −0 src/test/csrc/common/golden.cpp
+57 −0 src/test/csrc/common/perf.cpp
+44 −0 src/test/csrc/common/perf.h
+16 −0 src/test/csrc/common/ram.cpp
+11 −0 src/test/csrc/common/sdcard.cpp
+10 −0 src/test/csrc/common/vga.cpp
+25 −1 src/test/csrc/difftest/difftest.cpp
+7 −1 src/test/csrc/difftest/difftest.h
+41 −7 src/test/csrc/vcs/vcs_main.cpp
+4 −9 src/test/csrc/verilator/emu.cpp
+1 −3 src/test/scala/DifftestMain.scala
+10 −13 src/test/vsrc/vcs/top.v
+4 −2 vcs.mk
+1 −1 verilator.mk

0 comments on commit a42a7ff

Please sign in to comment.