diff options
| author | Aditya Naik | 2021-05-08 12:51:18 -0400 |
|---|---|---|
| committer | Aditya Naik | 2021-05-08 12:51:18 -0400 |
| commit | 1acccc74b1036d9d3847fdcc60c392125a03be85 (patch) | |
| tree | 609c192f1b3e1b4ab89e1992741d988f4120138c /core/obj_dir/Vtb_classes.mk | |
Initial
Added work on RV64 I core to date, including tb
Diffstat (limited to 'core/obj_dir/Vtb_classes.mk')
| -rw-r--r-- | core/obj_dir/Vtb_classes.mk | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/core/obj_dir/Vtb_classes.mk b/core/obj_dir/Vtb_classes.mk new file mode 100644 index 0000000..f3651f2 --- /dev/null +++ b/core/obj_dir/Vtb_classes.mk @@ -0,0 +1,49 @@ +# Verilated -*- Makefile -*- +# DESCRIPTION: Verilator output: Make include file with class lists +# +# This file lists generated Verilated files, for including in higher level makefiles. +# See Vtb.mk for the caller. + +### Switches... +# C11 constructs required? 0/1 (always on now) +VM_C11 = 1 +# Coverage output mode? 0/1 (from --coverage) +VM_COVERAGE = 0 +# Parallel builds? 0/1 (from --output-split) +VM_PARALLEL_BUILDS = 0 +# Threaded output mode? 0/1/N threads (from --threads) +VM_THREADS = 0 +# Tracing output mode? 0/1 (from --trace/--trace-fst) +VM_TRACE = 0 +# Tracing output mode in FST format? 0/1 (from --trace-fst) +VM_TRACE_FST = 0 +# Tracing threaded output mode? 0/1/N threads (from --trace-thread) +VM_TRACE_THREADS = 0 +# Separate FST writer thread? 0/1 (from --trace-fst with --trace-thread > 0) +VM_TRACE_FST_WRITER_THREAD = 0 + +### Object file lists... +# Generated module classes, fast-path, compile with highest optimization +VM_CLASSES_FAST += \ + Vtb \ + +# Generated module classes, non-fast-path, compile with low/medium optimization +VM_CLASSES_SLOW += \ + Vtb__Slow \ + +# Generated support classes, fast-path, compile with highest optimization +VM_SUPPORT_FAST += \ + +# Generated support classes, non-fast-path, compile with low/medium optimization +VM_SUPPORT_SLOW += \ + Vtb__Syms \ + +# Global classes, need linked once per executable, fast-path, compile with highest optimization +VM_GLOBAL_FAST += \ + verilated \ + +# Global classes, need linked once per executable, non-fast-path, compile with low/medium optimization +VM_GLOBAL_SLOW += \ + + +# Verilated -*- Makefile -*- |
