-
Notifications
You must be signed in to change notification settings - Fork 1
/
reference_solutions.tlv
108 lines (86 loc) · 2.72 KB
/
reference_solutions.tlv
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
\m4_TLV_version 1d: tl-x.org
\SV
// ==========================================
// For use in Makerchip for the MYTH Workshop
// Provides reference solutions
// without visibility to source code.
// ==========================================
// ----------------------------------
// Instructions:
// - When stuck on a particular lab, configure code below,
// and compile/simulate.
// - A reference solution will build, but the source code will not be visible.
// - You may use waveforms, diagrams, and visualization to understand the proper circuit, but you
// will have to come up with the code. Logic expression syntax can be found by hovering over the
// signal assignment in the diagram.
// - Also reference https://github.com/stevehoover/RISC-V_MYTH_Workshop/blob/master/README.md
// for updated information during the workshop as well as live support links.
// ----------------------------------
// =============
// Configuration
// =============
// For RISC-V solutions, comment the line below.
m4_define(['M4_CALCULATOR'], 1)
// Provide a slide number for the lab (reference below).
m4_define(['M4_SLIDE_NUM'], 100)
// Default Makerchip TL-Verilog Code Template
m4_include_makerchip_hidden(['myth_workshop_solutions.private.tlv'])
// Macro providing required top-level module definition, random
// stimulus support, and Verilator config.
m4_makerchip_module // (Expanded in Nav-TLV pane.)
\TLV
m4+solution(M4_SLIDE_NUM)
// The stage that is represented by visualization.
m4+cpu_viz(@4)
\SV
endmodule
/*
Labs slide #, for reference
----- Calculator Labs ------
Slide Lab
----- ---
23 Sequential Calculator
35 Counter and Calculator in Pipeline
36 2-Cycle Calculator
41 2-Cycle Calculator with Validity
43 Calculator with Single-Value Memory
----- RISC-V Labs ----------
Slide Lab
----- ---
D4SK2
-----
6 [Not supported] Next PC
7 Fetch (part 1)
8 Fetch (part 2)
10 Instruction Types Decode and Immediate Decode
11 Instruction Decode
12 RISC-V Instruction Field Decode
13 Instruction Decode
D4SK3
-----
16 Register File Read
17 Register File Read (part 2)
18 ALU
20 Register File Write
21 Branches 1
22 Branches 2
25 Testbench
D5SK1
-----
33 3-Cycle valid
36 3-Cycle RISC-V 1
37 3-Cycle RISC-V 2
D5SK2
-----
39 Register File Bypass
42 Branches
44 Complete Instruction Decode
45 Complete ALU
D5SK3
-----
48 Redirect Loads
49 Load Data 1
51 Load Data 2
52 Load/Store in Program
53 Jumps
*********************************/