mirror of
https://github.com/saymrwulf/pulp-runtime.git
synced 2026-05-17 21:10:46 +00:00
Support fast_debug bootmode in Verilator
This commit is contained in:
parent
26f3f15a15
commit
7ddcb0037e
1 changed files with 6 additions and 0 deletions
|
|
@ -153,7 +153,13 @@ endif
|
|||
# VERILATOR Flags
|
||||
#
|
||||
verilator_flags ?= --trace
|
||||
ifdef bootmode
|
||||
ifeq ($(bootmode), fast_debug)
|
||||
verilator_flags += +bootmode=fast_debug_preload
|
||||
else
|
||||
verilator_flags += +bootmode=jtag
|
||||
endif
|
||||
endif
|
||||
verilator_flags += +log_file=trace_core.log +itb_file=$(TARGETS).itb
|
||||
|
||||
#
|
||||
|
|
|
|||
Loading…
Reference in a new issue