; ScrachStack OS Boot v1.0
MOV AX,0
MOV DS,AX
LEA DX,MSG
CALL PRINT
HLT
MSG DB 'Booting ScrachStack...',0
PRINT:
MOV AH,0x0E
.next:
LODSB
CMP AL,0
JE .done
INT 0x10
JMP .next
.done:
RETScrachStack/ScrachStack
Folders and files
| Name | Name | Last commit date | ||
|---|---|---|---|---|