forked from secworks/sha256
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sha256.core
51 lines (41 loc) · 910 Bytes
/
sha256.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
47
48
49
50
51
CAPI=2:
name : secworks:crypto:sha256:0
filesets:
rtl:
files:
- src/rtl/sha256.v
- src/rtl/sha256_core.v
- src/rtl/sha256_k_constants.v
- src/rtl/sha256_w_mem.v
file_type : verilogSource
tb:
files:
- src/tb/tb_sha256.v
- src/tb/tb_sha256_core.v
- src/tb/tb_sha256_w_mem.v
file_type : verilogSource
openlane: {files : [data/sky130.tcl : {file_type : tclSource}]}
targets:
default:
filesets: [rtl]
lint:
default_tool : verilator
filesets : [rtl]
tools:
verilator:
mode : lint-only
toplevel : sha256
sky130:
default_tool: openlane
filesets: [rtl, openlane]
toplevel: sha256
tb_sha256: &tb
default_tool: icarus
filesets: [rtl, tb]
toplevel : tb_sha256
tb_sha256_core:
<<: *tb
toplevel : tb_sha256_core
tb_sha256_w_mem:
<<: *tb
toplevel : tb_sha256_w_mem