diff --git a/site-setup.sh b/site-setup.sh index cf28a93f1..1ffca5fd4 100755 --- a/site-setup.sh +++ b/site-setup.sh @@ -12,11 +12,12 @@ export MGLS_LICENSE_FILE=27002@zircon.eng.hmc.edu # Change this to your Siemens license server for Questa export SNPSLMD_LICENSE_FILE=27020@zircon.eng.hmc.edu # Change this to your Synopsys license server for Design Compiler export QUESTA_HOME=/cad/mentor/questa_sim-2023.4/questasim # Change this for your path to Questa, excluding bin -export SNPS_HOME=/cad/synopsys/SYN # Change this for your path to Design Compiler, excluding bin +export DC_HOME=/cad/synopsys/SYN # Change this for your path to Synopsys Design Compiler, excluding bin +export VCS_HOME=/cad/synopsys/vcs/U-2023.03-SP2-4 # Change this for your path to Synopsys VCS, exccluding bin # Tools # Questa and Synopsys -export PATH=$QUESTA_HOME/bin:$SNPS_HOME/bin:$PATH +export PATH=$QUESTA_HOME/bin:$DC_HOME/bin:$VCS_HOME/bin:$PATH # GCC export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$RISCV/riscv-gnu-toolchain/lib:$RISCV/riscv-gnu-toolchain/riscv64-unknown-elf/lib diff --git a/src/uncore/clint_apb.sv b/src/uncore/clint_apb.sv index 9122c3dab..997c1bd39 100644 --- a/src/uncore/clint_apb.sv +++ b/src/uncore/clint_apb.sv @@ -150,6 +150,7 @@ module clint_apb import cvw::*; #(parameter cvw_t P) ( endmodule +/* module timeregsync import cvw::*; #(parameter cvw_t P) ( input logic clk, resetn, input logic we0, we1, @@ -169,6 +170,7 @@ module timeregsync import cvw::*; #(parameter cvw_t P) ( else q <= q + 1; endmodule + module timereg import cvw::*; #(parameter cvw_t P) ( input logic PCLK, PRESETn, TIMECLK, input logic we0, we1, @@ -245,3 +247,4 @@ module graytobinary #(parameter N) ( assign b[i] = g[i] ^ b[i+1]; end endmodule +*/ \ No newline at end of file