forked from cs-pub-ro/hardware-software-interface
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.yaml
248 lines (244 loc) · 9.27 KB
/
config.yaml
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
stages:
# - make_assets
- embed_reveal
- docusaurus
build_dir: /build
output_type: last
output_dir: /output
make_assets:
plugin: command
options:
command: make
locations:
- chapters/template-chapter/template-topic/slides
args:
- all
embed_reveal:
plugin: reveal_embed
options:
target: docusaurus
extension: mdx
build:
template-chapter-template-topic: template-chapter-template-topic
docusaurus:
plugin: docusaurus
options:
course_name: Hardware Software Interface
math: true
sidebar: js
structure:
- Introduction: chapters/landing-page/README.md
- Lab 1 - Number Representation:
- Binary and Hexadecimal:
path: chapters/intro-computer-architecture/binary-hex/
extra:
- media/
subsections:
- Reading/: reading/
- Drills:
path: drills/
subsections:
- Tasks:
path: tasks/
subsections:
- Conversions/: conversions/
- Rotations/: rotations/
- Binary Even and Hexadecimal Odd/: odd-even/
- Pointers in C:
path: chapters/memory-layout/c-pointers/
extra:
- media/
subsections:
- Reading/: reading/
- Drills:
path: drills/
subsections:
- Tasks:
path: tasks/
subsections:
- Length and Equality with Bitwise Operations/: len-xor/
- Mirror/: mirror/
- Lab 2 - Memory Operations. Introduction to GDB:
- Memory Operations:
path: chapters/memory-layout/memory-operations/
extra:
- media/
subsections:
- Reading/: reading/
- Guides:
path: guides/
subsections:
- Array vs Pointer/: array_vs_pointer/
- Drills:
path: drills/
subsections:
- Tasks:
path: tasks/
subsections:
- Iterating through an Integer Array/: iterate/
- Deleting the First Occurrence of a Pattern from a String/: delete_first/
- Pixels/: pixels/
- Find Maximum in Array/: find_max/
- Bonus - Pointers/: pointers/
- Introduction to GDB:
path: chapters/memory-layout/introduction-to-GDB/
subsections:
- Reading/: reading/
- Guides:
path: guides/
subsections:
- GDB Tutorial - Debugging a Segfault/: segfault/
- Drills:
path: drills/
subsections:
- Tasks:
path: tasks/
subsections:
- Data Inspection/: inspect/
- Lab 4 - Toolchain. GOTO:
- GOTO statements in C:
path: chapters/intro-computer-architecture/c-goto-statements/
subsections:
- Reading/: reading/
- Guides:
path: guides/
subsections:
- GOTO Warm-up/: goto-warm-up/
- Drills:
path: drills/
subsections:
- Tasks:
path: tasks/
subsections:
- Algorithms Using GOTO/: goto-algs/
- Toolchain for Reverse Engineering:
path: chapters/memory-security/reverse-engineering/
subsections:
- Reading/: reading/
- Guides:
path: guides/
subsections:
- Compiler Explorer Tutorial/: compiler-explorer-tutorial/
- Ghidra Tutorial/: ghidra-tutorial/
- Drills:
path: drills/
subsections:
- Tasks:
path: tasks/
subsections:
- Old Hits/: old-hits/
- Lab 5 - Introduction to Assembly Language:
- Introduction:
path: chapters/hardware-software-interface/introduction/
subsections:
- Reading/: reading/
- x86 Architecture Family:
path: chapters/hardware-software-interface/x86-architecture-family/
extra:
- media/
subsections:
- Reading/: reading/
- Guides:
path: guides/
subsections:
- First look at assembly instructions/: instructions/
- Discovering Assembly/: discovering-assembly/
- Drills:
path: drills/
subsections:
- Tasks:
path: tasks/
subsections:
- Conditional Jumps/: conditional-jumps/
- Grumpy Jumps/: grumpy-jumps/
- Sets/: sets/
- Min/: min/
- Fibonacci/: fibonacci/
- Carry Flag - Overflow Flag/: cf-of/
- Lab 6 - Registers and Memory Addressing:
- Registers:
path: chapters/hardware-software-interface/registers/
extra:
- media/
subsections:
- Reading/: reading/
- Guides:
path: guides/
subsections:
- Multiply and Divide/: multiply-divide/
- Floating Point Exception/: floating-point-exception/
- Drills:
path: drills/
subsections:
- Tasks:
path: tasks/
subsections:
- Divide/: div/
- Multiply/: mul/
- Sum of first N numbers squared/: sum-squared/
- Memory Addressing:
path: chapters/hardware-software-interface/memory-addressing/
subsections:
- Reading/: reading/
- Guides:
path: guides/
subsections:
- Addressing Arrays/: addressing-arrays/
- Declarations/: declarations/
- Loop/: loop/
- Drills:
path: drills/
subsections:
- Tasks:
path: tasks/
subsections:
- Sum Elements of Array/: sum-array/
- Count Elements of Array/: vec-count-if/
- Lab 7 - Structures, vectors and strings:
- Structures:
path: chapters/hardware-software-interface/structures/
subsections:
- Reading/: reading/
- Guides:
path: guides/
subsections:
- Students/: students/
- Drills:
path: drills/
subsections:
- Tasks:
path: tasks/
subsections:
- Fibonacci Sum/: fibonacci/
- Print Structure/: print-structure/
- Getters and Setters/: getters-setters/
- Arrays:
path: chapters/hardware-software-interface/arrays/
subsections:
- Reading/: reading/
- Guides:
path: guides/
subsections:
- Max/: max/
- Drills:
path: drills/
subsections:
- Tasks:
path: tasks/
subsections:
- Find Substring/: find-substring/
- Mul Arrays/: mul-arrays/
- Courses/: courses/
# static_assets:
# - template-chapter-template-topic: /build/make_assets/chapters/template-chapter/template-topic/slides/_site
config_meta:
title: Hardware Software Interface
url: http://localhost/
baseUrl: /hardware-software-interface/
onBrokenLinks: warn
onBrokenMarkdownLinks: warn
config_socials:
Main site: https://curs.upb.ro
OCW: https://ocw.cs.pub.ro/courses/pclp2
Facebook: https://www.facebook.com/10c1a
copyright_string: OpenEdu Team