-
Notifications
You must be signed in to change notification settings - Fork 10
/
mkdocs.yml
75 lines (75 loc) · 2.05 KB
/
mkdocs.yml
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
site_name: 重庆大学硬件综合设计实验文档
copyright: 'Copyright © 2022 College of Computer Science, Chongqing University.'
theme:
name: material
features:
- navigation.tabs
icon:
logo: material/memory
nav:
- 主页: index.md
- 环境配置:
- 工具: env/tools.md
- 实验资料包: env/resource.md
- 基本任务:
- 了解语言: basic/language.md
- 回顾计组实验四: basic/lab4.md
- 扩展到52条指令: basic/extend_52.md
- 扩展到57条指令: basic/extend_57.md
- 连接SRAM-SOC: basic/sram_soc.md
- 基础Cache: basic/basic_cache.md
- 多周期操作的握手信号: basic/handshake.md
- 扩展实验:
- AXI接口: ext/axi.md
- 性能优化: ext/opt.md
- Cache: ext/cache.md
- MMU: ext/mmu.md
- 运行操作系统: ext/os.md
- LoongArch32: ext/la32.md
- 调试技巧:
- 常见问题: tips/common.md
- 使用波形图: tips/wave_debug.md
- Git使用: tips/git.md
- 反汇编: tips/disasm.md
- Windows原生GTKWave: tips/win-gtkwave.md
- RISC-V挑战组:
- RISC-V指令集: rv/intro.md
- RISC-V基础整数指令集: rv/rv64i.md
- RISC-V整数乘除法扩展: rv/rv64m.md
- RISC-V特权级与CSR: rv/csr.md
plugins:
- search
- git-revision-date-localized:
fallback_to_build_date: true
locale: zh
- git-authors:
show_contribution: true
show_line_count: true
markdown_extensions:
- admonition
- codehilite:
guess_lang: false
linenums: true
- footnotes
- def_list
- meta
- toc:
permalink: true
- pymdownx.arithmatex
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.critic
- pymdownx.details
- pymdownx.emoji:
emoji_generator: !!python/name:pymdownx.emoji.to_svg
- pymdownx.inlinehilite
- pymdownx.magiclink
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.superfences
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
repo_name: 'CO-lab-docs-CQU'
repo_url: 'https://github.com/CQU-CS-LABs/CO-lab-docs-CQU'