https://github.com/donno2048/hellos
An entire operating system just to display: "Hello!"
https://github.com/donno2048/hellos
boot-sector operating-system
Last synced: 4 months ago
JSON representation
An entire operating system just to display: "Hello!"
- Host: GitHub
- URL: https://github.com/donno2048/hellos
- Owner: donno2048
- License: mit
- Created: 2021-04-21T22:18:20.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2021-05-20T09:59:52.000Z (over 4 years ago)
- Last Synced: 2025-02-24T11:17:03.385Z (11 months ago)
- Topics: boot-sector, operating-system
- Language: Assembly
- Homepage:
- Size: 11.7 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# HellOS
An entire operating system (actually a boot sector) just to display: "Hello!" (Or anything else)
Inside the _Full_ folder there are the files needed to create an entire operating system (not only a boot sector) with cpp
## Clone the repo
```sh
git clone https://github.com/donno2048/HellOS
cd HellOS
```
## Install dependencies
```sh
sudo apt update -y
sudo apt install qemu-system-x86 nasm -y # qemu is needed only for running the OS locally (as in the **Run the OS** section)
```
## Compile the OS
```sh
bash main.sh Hello! # Or use any other word, for some reason some will work and some won't
```
## Run the OS
```sh
qemu-system-x86_64 hello.bin
```