Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tesa-klebeband/davidos
A DOS clone written entirely in x86 Assembly that supports parts of the DOS api
https://github.com/tesa-klebeband/davidos
operating-system x86
Last synced: about 1 month ago
JSON representation
A DOS clone written entirely in x86 Assembly that supports parts of the DOS api
- Host: GitHub
- URL: https://github.com/tesa-klebeband/davidos
- Owner: tesa-klebeband
- License: gpl-3.0
- Created: 2023-01-01T12:48:25.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2023-10-22T18:42:15.000Z (about 1 year ago)
- Last Synced: 2023-10-22T19:30:17.125Z (about 1 year ago)
- Topics: operating-system, x86
- Language: Assembly
- Homepage:
- Size: 97.7 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# DaviDOS
A DOS clone written entirely in x86 Assembly that supports parts of the DOS api
## Features
DaviDOS currently supports 32 functions of the DOS interrupt 21h. Those functions reach from printing text to the console to reading and writing to files using handles. DaviDOS supports FAT-16 formatted Hard drives and MBR partitions up to 16 MB and is able to load files with a maximum size of 64K. The built-in command line interpreter supports 11 commands and is able to execute .COM and .EXE files. The ANSI driver currently supports only changing colors.
## Building
### Requirements
* NASM
* Make
* QEMU - only required for running DaviDOS in a VMTo build DaviDOS navigate to the root of this project and run `make`. All output files will be stored under the `build/` directory.
To run DaviDOS in QEMU run `make run`.## License
All files within this repo are released under the GNU GPL V3 License as per the LICENSE file stored in the root of this repo.