-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsim-gl-syn.yml
More file actions
executable file
·40 lines (36 loc) · 869 Bytes
/
sim-gl-syn.yml
File metadata and controls
executable file
·40 lines (36 loc) · 869 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# Specify Global Variables
simClockPeriod : &SIM_CLK_PERIOD "CLOCK_PERIOD=2.50"
simOptions: &SIM_OPTIONS
- "-notice"
- "-line"
- "+lint=all,noVCDE"
- "+v2k"
- "-debug"
- "+vcs+lic+wait"
- "+vcs+initreg+random"
- "+udpsched"
- "+neg_tchk"
- "+sdfverbose"
- "-negdelay"
- "+evalorder"
# - "+define+no_cache_mem"
- "+define+DEBUG"
- "+incdir+../../src"
simVerilogSrc: &SIM_VERILOG_SRC
- "/home/ff/eecs151/verilog_lib/EECS151.v"
- "src/ExtMemModel.v"
- "src/riscv_test_harness.v"
tb_name: &TB_NAME "rocketTestHarness"
# Post-Synthesis Gate-Level Simulation Variables
sim.inputs:
input_files: *SIM_VERILOG_SRC
input_files_meta: append
timing_annotated: true
level: "gl"
timescale: "1ns/1ps"
options: *SIM_OPTIONS
top_module: *TB_NAME
tb_name: *TB_NAME
defines:
- *SIM_CLK_PERIOD
execute_sim: false