-
Notifications
You must be signed in to change notification settings - Fork 13
/
minimax.core
46 lines (40 loc) · 1.15 KB
/
minimax.core
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
41
42
43
44
45
46
CAPI=2:
name : ::minimax:1.0.0
filesets:
rtl:
files:
- rtl/minimax.v : {file_type : verilogSource}
tb:
files:
- rtl/minimax_tb.vhd : {file_type : vhdlSource-2008}
targets:
default:
filesets : [rtl]
toplevel : minimax
parameters : [PC_BITS, UC_BASE, TRACE]
sim:
default_tool : xsim
filesets: [rtl, tb]
parameters : [ROM_FILENAME, MAXTICKS, TRACE]
toplevel: minimax_tb
parameters:
PC_BITS:
datatype : int
paramtype : generic
description : Width of the program counter register (i.e. program address space)
UC_BASE:
datatype : int
paramtype : generic
description : Base address for microcode traps
ROM_FILENAME:
datatype : file
paramtype : generic
description : Compiled ROM contents, expressed in hex-formatted text (one 32-bit word per line)
MAXTICKS:
datatype : int
paramtype : generic
description : Sets a timeout for the allowable number of simulation ticks before the testbench bails and declares failure.
TRACE:
datatype : bool
paramtype : generic
description : Enable/Disable detailed tracing messages during execution