fork download
  1. [BITS 16]
  2. [ORG 0x7C00]
  3.  
  4. mov si, cat
  5. jmp printstr
  6.  
  7. printstr:
  8. loadsb
  9. cmp al, 0
  10. jz hang
  11. mov ah, 0x0e
  12. int 10h
  13. jmp printstr
  14.  
  15. hang:
  16. jmp hang
  17.  
  18. cat db "Booting.....", 0
  19. times 510 - ($-$$) db 0
  20. dw 0xAA55
  21.  
  22. ;Python OS 1.0 Bootloader
  23. ;status)unfinished
  24.  
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.asm:2: error: unrecognised directive [ORG]
ld: cannot find prog.o: No such file or directory
stdout
Standard output is empty