feat: partial PCIe support (MCFG table parsing)
[lunaix-os.git] / README.md
index bc0b8d4f5895dcc4d23a1a9d3905543fa253f4da..0338614c8c43bc53eb53a8312672798193de1dcf 100644 (file)
--- a/README.md
+++ b/README.md
@@ -1,5 +1,9 @@
 <p align="center">
-  <img width="256" src="docs/img/lunaix-os-logo.png">
+  <img width="auto" src="docs/img/lunaix-os-logo.png">
+</p>
+
+<p align="center">
+  <span>简体中文</span> | <a href="docs/README_en.md">English</a>
 </p>
 
 # LunaixOS Project 
@@ -18,9 +22,11 @@ LunaixOS - 一个简单的,详细的,POSIX兼容的(但愿!),带有
 + 内存管理与按需分页(Demand Paging)
 + 键盘输入
 + 多进程
-+ 14个常见的Linux/POSIX系统调用([附录1](#appendix1))
++ 17个常见的Linux/POSIX系统调用([附录1](#appendix1))
 + 用户模式
-+ 信号机制(进行中)
++ 信号机制
++ PCI 3.0
++ PCIe 2.0 (WIP)
 
 ## 目录结构
 
@@ -48,6 +54,7 @@ LunaixOS - 一个简单的,详细的,POSIX兼容的(但愿!),带有
 + 82093AA I/O Advanced Programmable Controller (IOAPIC) (Datasheet)
 + MC146818A (Datasheet)
 + Intel 500 Series Chipset Family Platform Controller Hub (Datasheet - Volume 2)
++ PCI Local Bus Specification, Revision 3.0
 
 #### 理论书籍
 + *Computer System - A Programmer's Perspective Third Edition (CS:APP)* (Bryant, R & O'Hallaron, D)
@@ -59,6 +66,7 @@ LunaixOS - 一个简单的,详细的,POSIX兼容的(但愿!),带有
 + [OSDev](https://wiki.osdev.org/Main_Page) - 杂七杂八的参考,很多过来人的经验。作者主要用于上古资料查询以及收集;技术文献,手册,标准的粗略总结;以及开发环境/工具链的搭建。
 + [FreeVGA](http://www.osdever.net/FreeVGA/home.htm) - 98年的资源!关于VGA编程技术的宝藏网站。
 + GNU CC 和 GNU LD 的官方文档。
++ [PCI Lookup](https://www.pcilookup.com/) - PCI设备编号查询
 
 #### 其他
 + Linux Manual - 用于查询*nix API的一些具体行为。
@@ -67,7 +75,7 @@ LunaixOS - 一个简单的,详细的,POSIX兼容的(但愿!),带有
 ## 附录1:支持的系统调用<a id="appendix1"></a>
 
 ### Unix/Linux/POSIX
-1. `sleep(2)`
+1. `sleep(3)`
 1. `wait(2)`
 1. `waitpid(2)`
 1. `fork(2)`
@@ -80,8 +88,11 @@ LunaixOS - 一个简单的,详细的,POSIX兼容的(但愿!),带有
 1. `_exit(2)`
 1. `sigreturn(2)`
 1. `sigprocmask(2)`
-1. `signal(2)   `
+1. `signal(2)`
+1. `kill(2)`
+1. `sigpending(2)`
+1. `sigsuspend(2)`
 
 ### LunaixOS自有
 
-1. `yield`
\ No newline at end of file
+1. `yield`