<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
+ 内存管理与按需分页(Demand Paging)
+ 键盘输入
+ 多进程
-+ 14个常见的Linux/POSIX系统调用([附录1](#appendix1))
++ 17个常见的Linux/POSIX系统调用([附录1](#appendix1))
+ 用户模式
-+ 信号机制(进行中)
++ 信号机制
++ PCI 3.0
++ PCIe 2.0 (WIP)
## 目录结构
+ 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)
+ [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的一些具体行为。
## 附录1:支持的系统调用<a id="appendix1"></a>
### Unix/Linux/POSIX
-1. `sleep(2)`
+1. `sleep(3)`
1. `wait(2)`
1. `waitpid(2)`
1. `fork(2)`
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`