home
to by Nando
;MOFOS - My Own Free Operating System
;Copyleft (>) haLLs, 20/09/2004
; Se trata de un BOOTSTRAP, un programa de arranke desde la BIOS, que esta
; pensado para iniciar el futuro kernel de un futuro sistema operativo xD
; (soñar era gratis no?)to by txipi
section .bss
char resb 1
section .text
global _start
_start:to by txipi
section .data
msg db 'Hello, world!', 0Ah ;message
len equ $ - msg ;length
section .text
global _startto by txipi
section .data
i dd 0Ah ;10 veces
msg db 'Repitiendo...', 0Ah ;mensaje
len equ $ - msg ;longitud
section .text