Update README | add shortcut to build boom

This commit is contained in:
abejgonzalez
2019-04-17 17:52:31 -07:00
parent 885c5f74db
commit e71bf2139f
2 changed files with 31 additions and 1 deletions

View File

@@ -12,6 +12,9 @@
# SBT_PROJECT = the SBT project that you should find the Generator class in
# TB = wrapper over the TestHarness needed to simulate in VCS
# TOP = top level module of the project (normally the module instantiated by the harness)
#
# project specific:
# SUB_PROJECT = use the specific subproject default variables
#########################################################################################
PROJECT ?= example
MODEL ?= TestHarness
@@ -21,6 +24,13 @@ SBT_PROJECT ?= $(PROJECT)
TB ?= TestDriver
TOP ?= ExampleTop
SUB_PROJECT ?= example
ifeq ($(SUB_PROJECT),boom) # make it so that you only change 1 param to change them all!
SBT_PROJECT=boom
PROJECT=boom.system
TOP=ExampleBoomSystem
endif
#########################################################################################
# path to rocket-chip and testchipip
#########################################################################################