Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/travorlzh/learnos
A repo that contains all the code written in my study of OS development.
https://github.com/travorlzh/learnos
assembly c kernel operating-system-learning tutorial
Last synced: 17 days ago
JSON representation
A repo that contains all the code written in my study of OS development.
- Host: GitHub
- URL: https://github.com/travorlzh/learnos
- Owner: TravorLZH
- Created: 2017-12-08T17:42:55.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2018-02-20T13:54:10.000Z (almost 7 years ago)
- Last Synced: 2024-11-16T15:12:58.388Z (3 months ago)
- Topics: assembly, c, kernel, operating-system-learning, tutorial
- Language: Assembly
- Size: 735 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Learning OS
=======
This repo will show every code I wrote in order to write my OS at [TravorOS Repository][1].[1]: https://github.com/TravorLZH/TravorOS
## Introduction of different folders
`common`: Library functions I made for simplifying codes
### OS in 16 bit real mode`helloworld`: Some very basic boot sector program I made.
`memorydemo`: Some demos of reading disk and memory
`kerneltest`: This is a failed demonstration of loading assembly kernel.
### OS in 32 bit protected mode
`helloworld32`: basic 32 bit programs
`kerneltest32`: A successful demonstration of loading c kernel in 32-bit protected mode
##### Note
`kerneltest32` may be the last project I created in this repo. If you want to find more, check out [TravorOS](https://github.com/TravorLZH/TravorOS)