Skip to content

Commit

Permalink
[nix] fix simulator binary name
Browse files Browse the repository at this point in the history
  • Loading branch information
Avimitin committed Jan 25, 2025
1 parent e44c918 commit 596e9b4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nix/t1/t1.nix
Original file line number Diff line number Diff line change
Expand Up @@ -118,15 +118,15 @@ forEachTop (topName: generator: self: {
};

verilator-emu = t1Scope.sv-to-verilator-emulator {
mainProgram = "${topName}-verilated";
mainProgram = "${topName}-verilated-simulator";
topModule = "TestBench";
rtl = self.rtl;
vsrc = lib.filesystem.listFilesRecursive self.clean-vsrc.outPath;
dpiLibs = [ "${self.verilator-dpi-lib}/lib/libdpi_${topName}.a" ];
};
verilator-emu-trace = self.verilator-emu.override {
enableTrace = true;
mainProgram = "${topName}-verilated-trace";
mainProgram = "${topName}-verilated-trace-simulator";
};

# ---------------------------------------------------------------------------------
Expand Down

0 comments on commit 596e9b4

Please sign in to comment.