Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/danielmeloalencar/meu-os-do-zero

Um simples Sistema Operacional x86 Multitarefas escrito do zero
https://github.com/danielmeloalencar/meu-os-do-zero

c-language from-scratch operating-system x86-assembly

Last synced: about 1 month ago
JSON representation

Um simples Sistema Operacional x86 Multitarefas escrito do zero

Awesome Lists containing this project

README

        

# Meu Sistema Operacional do Zero

## O bootloader
* Para compilar, use o nasm

`nasm -f bin boot.asm -o boot.bin`
* Para executar, use o Qemu

`qemu-system-x86_64 -hda ./boot.bin `

Rodando no Qemu
![Bootload Image](./assets/print.png)

Rodando no PC Real Ryzen 5
![PC Real](./assets/pcreal.jpg)