-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathsha1.core
50 lines (40 loc) · 843 Bytes
/
sha1.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
CAPI=2:
name : secworks:crypto:sha1:0
filesets:
rtl:
files:
- src/rtl/sha1.v
- src/rtl/sha1_core.v
- src/rtl/sha1_w_mem.v
file_type : verilogSource
tb:
files:
- src/tb/tb_sha1.v
- src/tb/tb_sha1_core.v
- src/tb/tb_sha1_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 : sha1
sky130:
default_tool: openlane
filesets: [rtl, openlane]
toplevel: sha1
tb_sha1: &tb
default_tool: icarus
filesets: [rtl, tb]
toplevel : tb_sha1
tb_sha1_core:
<<: *tb
toplevel : tb_sha1_core
tb_sha1_w_mem:
<<: *tb
toplevel : tb_sha1_w_mem