Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rename files #290

Merged
merged 1 commit into from
Nov 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions hw/application_fpga/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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 = \
Expand Down
Original file line number Diff line number Diff line change
@@ -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.
//
//
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//======================================================================
//
// reset_gen_vsim.v
// reset_gen_sim.v
// ----------------
// Reset generator Verilator simulation of the application_fpga.
//
Expand Down