Name: Anonymous 2009-12-26 19:45
Write an operating system capable of outputing Sussmen. Prove its correct operation by outputing a Sussman once the boot sequence is complete.
ORG 0x7c00
push cs
pop ds
mov si, sussman
xor ax, ax
mov bx, 7
mov cx, 7
mov ah, 14
loop:
lodsb
int 0x10
loop loop
hcf
sussman db 'Sussman'