mirror of
https://github.com/vortexgpgpu/vortex.git
synced 2025-04-23 13:27:29 -04:00
moving afu folder into rtl
This commit is contained in:
parent
1371e7714c
commit
98f8102741
16 changed files with 7 additions and 6 deletions
|
@ -23,7 +23,7 @@ A debug trace `run.log` is generated in the current directory during the program
|
|||
|
||||
## RTL Debugging
|
||||
|
||||
To debug the processor RTL, you need to use VLSIM or RTLSIM driver. VLSIM simulates the full processor including the AFU command processor (using `/rtl/afu/vortex_afu.sv` as top module). RTLSIM simulates the Vortex processor only (using `/rtl/Vortex.v` as top module).
|
||||
To debug the processor RTL, you need to use VLSIM or RTLSIM driver. VLSIM simulates the full processor including the AFU command processor (using `/rtl/afu/opae/vortex_afu.sv` as top module). RTLSIM simulates the Vortex processor only (using `/rtl/Vortex.v` as top module).
|
||||
|
||||
The recommended method to enable debugging is to pass the `--debug` flag to `blackbox` tool when running a program.
|
||||
|
||||
|
|
|
@ -3,7 +3,8 @@
|
|||
"include_paths":[
|
||||
"../dpi",
|
||||
"../rtl",
|
||||
"../rtl/afu",
|
||||
"../rtl/afu/opae",
|
||||
"../rtl/core",
|
||||
"../rtl/cache",
|
||||
"../rtl/fpu_unit",
|
||||
"../rtl/interfaces",
|
||||
|
|
|
@ -5,7 +5,7 @@ NUM_CORES ?= 1
|
|||
SCRIPT_DIR = ../../../scripts
|
||||
RTL_DIR = ../../../rtl
|
||||
DPI_DIR = ../../../dpi
|
||||
AFU_DIR = ../../../afu/opae
|
||||
AFU_DIR = $(RTL_DIR)/afu/opae
|
||||
|
||||
IP_CACHE_DIR = ../ip_cache/$(DEVICE_FAMILY)
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
RTL_DIR = ../../../../../rtl
|
||||
AFU_DIR = ../../../../../afu/opae
|
||||
AFU_DIR = $(RTL_DIR)/afu/opae
|
||||
THIRD_PARTY_DIR = ../../../../../../third_party
|
||||
IP_CACHE_DIR = ../../../ip_cache/$(DEVICE_FAMILY)
|
||||
SCRIPT_DIR = ../../../../../scripts
|
||||
|
|
|
@ -17,7 +17,7 @@ PREFIX ?= build
|
|||
MAX_JOBS ?= 8
|
||||
|
||||
RTL_DIR = ../../../../rtl
|
||||
AFU_DIR = ../../../../afu/xrt
|
||||
AFU_DIR = $(RTL_DIR)/afu/xrt
|
||||
SCRIPT_DIR = ../../../../scripts
|
||||
|
||||
PLATFORM_TO_XSA = $(strip $(patsubst %.xpfm, % , $(shell basename $(PLATFORM))))
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
DESTDIR ?= .
|
||||
RTL_DIR = ../../hw/rtl
|
||||
DPI_DIR = ../../hw/dpi
|
||||
AFU_DIR = ../../hw/afu/opae
|
||||
AFU_DIR = $(RTL_DIR)/afu/opae
|
||||
SCRIPT_DIR = ../../hw/scripts
|
||||
THIRD_PARTY_DIR = ../../third_party
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue