Skip to content

Commit

Permalink
Moved the RTL code into /rtl folder
Browse files Browse the repository at this point in the history
  • Loading branch information
jxwleong committed Sep 7, 2023
1 parent a80073e commit c92159d
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Makefile
THIS_DIR := $(shell dirname $(realpath $(lastword $(MAKEFILE_LIST))))

RTL_DIR := $(THIS_DIR)/rtl

# defaults
SIM ?= icarus
Expand All @@ -22,15 +22,15 @@ all: test_microprocessor \
# MODULE is the basename of the Python test file
# use VHDL_SOURCES instead VERILOG_SOURCES of for VHDL files
#Paths to HDL source files
VERILOG_SOURCES += $(THIS_DIR)/CombinedCUnDP.v
VERILOG_SOURCES += $(THIS_DIR)/CU.v
VERILOG_SOURCES += $(THIS_DIR)/DP.v

VERILOG_SOURCES += $(THIS_DIR)/DFF_reg.v
VERILOG_SOURCES += $(THIS_DIR)/RAM.v
VERILOG_SOURCES += $(THIS_DIR)/addSubstractor.v
VERILOG_SOURCES += $(THIS_DIR)/mux2to1.v
VERILOG_SOURCES += $(THIS_DIR)/mux4to1.v
VERILOG_SOURCES += $(RTL_DIR)/CombinedCUnDP.v
VERILOG_SOURCES += $(RTL_DIR)/CU.v
VERILOG_SOURCES += $(RTL_DIR)/DP.v

VERILOG_SOURCES += $(RTL_DIR)/DFF_reg.v
VERILOG_SOURCES += $(RTL_DIR)/RAM.v
VERILOG_SOURCES += $(RTL_DIR)/addSubstractor.v
VERILOG_SOURCES += $(RTL_DIR)/mux2to1.v
VERILOG_SOURCES += $(RTL_DIR)/mux4to1.v


test_microprocessor:
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit c92159d

Please sign in to comment.