diff --git a/hw/application_fpga/Makefile b/hw/application_fpga/Makefile index 784d410..d2fe02b 100644 --- a/hw/application_fpga/Makefile +++ b/hw/application_fpga/Makefile @@ -79,8 +79,8 @@ FPGA_SRC = \ # Verilator simulation specific source files. VERILATOR_FPGA_SRC = \ - $(P)/tb/application_fpga_vsim.v \ - $(P)/tb/reset_gen_vsim.v + $(P)/tb/application_fpga_sim.v \ + $(P)/tb/reset_gen_sim.v # Common verilog source files. VERILOG_SRCS = \ diff --git a/hw/application_fpga/tb/application_fpga_vsim.v b/hw/application_fpga/tb/application_fpga_sim.v similarity index 99% rename from hw/application_fpga/tb/application_fpga_vsim.v rename to hw/application_fpga/tb/application_fpga_sim.v index e259e16..3f94871 100644 --- a/hw/application_fpga/tb/application_fpga_vsim.v +++ b/hw/application_fpga/tb/application_fpga_sim.v @@ -1,10 +1,10 @@ //====================================================================== // -// application_fpga.v -// ------------------ +// application_fpga_sim.v +// ---------------------- // Top level module of the application FPGA. // 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. // // diff --git a/hw/application_fpga/tb/reset_gen_vsim.v b/hw/application_fpga/tb/reset_gen_sim.v similarity index 98% rename from hw/application_fpga/tb/reset_gen_vsim.v rename to hw/application_fpga/tb/reset_gen_sim.v index c7a2987..6187d4c 100644 --- a/hw/application_fpga/tb/reset_gen_vsim.v +++ b/hw/application_fpga/tb/reset_gen_sim.v @@ -1,6 +1,6 @@ //====================================================================== // -// reset_gen_vsim.v +// reset_gen_sim.v // ---------------- // Reset generator Verilator simulation of the application_fpga. //