Skip to content

Commit

Permalink
fix: ajustes finos
Browse files Browse the repository at this point in the history
  • Loading branch information
pablogeokar committed Jan 2, 2025
1 parent 063fecc commit 0596e02
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
8 changes: 7 additions & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,13 @@ mkisofs -o bootable.iso -b disk.img -c boot.catalog -no-emul-boot -boot-load-siz
qemu-system-x86_64 -drive format=raw,file=disk.img
```

## 4. Principais dúvidas e suas soluções:
## 4. Visualização rápida dos binários em hexadecimal

```bash
hexdump -C bin/boot.bin
```

## 5. Principais dúvidas e suas soluções:

#### Tentei algumas opções na minha UEFI/BIOS, mas na máquina real, o KiddieOS só mostra um cursor piscando numa tela preta, já no VB, mostra o proposto.

Expand Down
3 changes: 2 additions & 1 deletion src/boot.asm
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,5 @@ LoadSystem:
ret ; Retorna da sub-rotina

times 510-($-$$) db 0 ; Preenche o restante do setor de boot com zeros até 510 bytes
dw 0xAA55 ; Assinatura de boot (0xAA55) nos últimos 2 bytes do setor
dw 0xAA55 ; Assinatura de boot (0xAA55) nos últimos 2 bytes do setor

0 comments on commit 0596e02

Please sign in to comment.