I used to love C, but It seems every were I went I found Fasm boot loaders and kernels
So I'm starting a Fasm boot loader, :wacko: Can anyone help me?
heres what I have so far.
Code:org 0x7C00 use16 start: xor ax,ax mov ds,ax mov es,ax mov ss,ax mov sp,0x7C00 re_loop: CLS mes 'P mode not enabled, ',10,5 'Basic boot loader this is all it does, ',10,5 jmp re_loop times 510- ($-start) db 0 dw 0xaa55


LinkBack URL
About LinkBacks






Reply With Quote