Add graphics subproject to variables.mk; bump rocket-chip

This commit is contained in:
Hansung Kim
2023-02-23 11:08:59 -08:00
parent ffeb90f5a8
commit 09782b3322
2 changed files with 13 additions and 1 deletions

View File

@@ -123,6 +123,18 @@ ifeq ($(SUB_PROJECT),constellation)
TB ?= TestDriver
TOP ?= NoC
endif
# For graphics developers
ifeq ($(SUB_PROJECT),graphics)
SBT_PROJECT ?= chipyard
MODEL ?= TestHarness
VLOG_MODEL ?= $(MODEL)
MODEL_PACKAGE ?= freechips.rocketchip.unittest
CONFIG ?= CoalescingUnitTestConfig
CONFIG_PACKAGE ?= freechips.rocketchip.unittest
GENERATOR_PACKAGE ?= chipyard
TB ?= TestDriver
TOP ?= UnitTestSuite
endif
#########################################################################################