kvisc/ka/sys/main.k

19 lines
283 B
Plaintext

; The OS/K Team licenses this file to you under the MIT license.
; See the LICENSE file in the project root for more information.
PrintBootMsg:
mov ax0, .bootmsg
call print
ret
.bootmsg = "Starting DOS...\n\n"
;
; Main function
;
main:
call PrintBootMsg
ret