You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

59 lines
3.1 KiB

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

# 基于RISC-V代理内核的操作系统课程实验与课程设计
[前言](preliminary.md)
[第一章. RISC-V体系结构](chapter1_riscv.md)
- [1.1 RISC-V发展历史](chapter1_riscv.md#history)
- [1.2 RISC-V汇编语言](chapter1_riscv.md#assembly)
- [1.3 机器的特权状态](chapter1_riscv.md#machinestates)
- [1.4 中断和中断处理](chapter1_riscv.md#traps)
- [1.5 页式虚存管理](chapter1_riscv.md#paging)
- [1.6 什么是代理内核](chapter1_riscv.md#proxykernel)
- [1.7 相关工具软件](chapter1_riscv.md#toolsoftware)
[第二章. 实验环境配置与实验构成](chapter2_installation.md)
- [2.1 实验环境安装](chapter2_installation.md#environments)
- [2.2 riscv-pke实验代码的获取](chapter2_installation.md#preparecode)
- [2.3 PKE实验的组成](chapter2_installation.md#pke_experiemnts)
[第三章. 实验1系统调用、异常和外部中断](chapter3_traps.md)
- [3.1 实验1的基础知识](chapter3_traps.md#fundamental)
- [3.2 lab1_1 系统调用](chapter3_traps.md#syscall)
- [3.3 lab1_2 异常处理](chapter3_traps.md#exception)
- [3.4 lab1_3外部中断](chapter3_traps.md#irq)
- [3.5 lab1_challenge1 打印用户程序调用栈(难度:★★☆☆☆](chapter3_traps.md#lab1_challenge1_backtrace)
- [3.6 lab1_challenge2 打印异常代码行(难度:★★★★☆](chapter3_traps.md#lab1_challenge2_errorline)
[第四章. 实验2内存管理](chapter4_memory.md)
- [4.1 实验2的基础知识](chapter4_memory.md#fundamental)
- [4.2 lab2_1 虚实地址转换](chapter4_memory.md#lab2_1_pagetable)
- [4.3 lab2_2 简单内存分配和回收](chapter4_memory.md#lab2_2_allocatepage)
- [4.4 lab2_3 缺页异常](chapter4_memory.md#lab2_3_pagefault)
- [4.5 lab2_challenge1 复杂缺页异常(难度:★☆☆☆☆](chapter4_memory.md#lab2_challenge1_pagefault)
- [4.6 lab2_challenge2 堆空间管理(难度:★★★★☆](chapter4_memory.md#lab2_challenge2_singlepageheap)
[第五章. 实验3进程管理](chapter5_process.md)
- [5.1 实验3的基础知识](chapter5_process.md#fundamental)
- [5.2 lab3_1 进程创建](chapter5_process.md#lab3_1_naive_fork)
- [5.3 lab3_2 进程yield](chapter5_process.md#lab3_2_yield)
- [5.4 lab3_3 循环轮转调度](chapter5_process.md#lab3_3_rrsched)
- [5.5 lab3_challenge1 进程等待和数据段复制(难度:★★☆☆☆](chapter5_process.md#lab3_challenge1_wait)
- [5.6 lab3_challenge2 实现信号量(难度:★★★☆☆](chapter5_process.md#lab3_challenge2_semaphore)
[第六章. 实验4设备管理基于RISCV-on-PYNQ](chapter6_device.md)
- [6.1 实验4的基础知识](chapter6_device.md#fundamental)
- [6.2 lab3_1 轮询方式](chapter6_device.md#polling)
- [6.3 lab3_2 中断方式](chapter6_device.md#PLIC)
- [6.4 lab3_3 主机设备访问](chapter6_device.md#hostdevice)
第七章. 实验5文件系统