Rename top level simulation files

* Rename application_fpga_vsim.v and reset_gen_vsim.v to
  application_fpga_sim.v and reset_gen_sim.v
* Update Makefile
* Fix a typo
This commit is contained in:
Jonas Thörnblad 2024-11-12 14:29:20 +01:00 committed by Daniel Jobson
parent aea2e319eb
commit 330146ba3a
No known key found for this signature in database
GPG Key ID: 3707A9DBF4BB8F1A
3 changed files with 6 additions and 6 deletions

View File

@ -79,8 +79,8 @@ FPGA_SRC = \
# Verilator simulation specific source files. # Verilator simulation specific source files.
VERILATOR_FPGA_SRC = \ VERILATOR_FPGA_SRC = \
$(P)/tb/application_fpga_vsim.v \ $(P)/tb/application_fpga_sim.v \
$(P)/tb/reset_gen_vsim.v $(P)/tb/reset_gen_sim.v
# Common verilog source files. # Common verilog source files.
VERILOG_SRCS = \ VERILOG_SRCS = \

View File

@ -1,10 +1,10 @@
//====================================================================== //======================================================================
// //
// application_fpga.v // application_fpga_sim.v
// ------------------ // ----------------------
// Top level module of the application FPGA. // Top level module of the application FPGA.
// The design exposes a UART interface to allow a host to // The design exposes a UART interface to allow a host to
// send commands and receive resposes as needed load, execute and // send commands and receive responses as needed load, execute and
// communicate with applications. // communicate with applications.
// //
// //

View File

@ -1,6 +1,6 @@
//====================================================================== //======================================================================
// //
// reset_gen_vsim.v // reset_gen_sim.v
// ---------------- // ----------------
// Reset generator Verilator simulation of the application_fpga. // Reset generator Verilator simulation of the application_fpga.
// //