Merge pull request #2 from E-Almqvist/dev

Dev
pull/3/head
E. Almqvist 4 years ago committed by GitHub
commit a668ba576a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      src/bootloader.asm

@ -3,6 +3,9 @@
mov bx, welcomeString ; Print the welcome string
call println
mov bx, infoString
call println
jmp $ ; inf loop
;; includes
@ -14,7 +17,8 @@ jmp $ ; inf loop
%include "elib/io.asm"
;; Data
welcomeString: db "Welcome to eOS", ASCII_END
welcomeString: db "Welcome to e Operating-System (eOS)", ASCII_END
infoString: db "eOS: 2021 v0.0"
; Magic BIOS number
times 510-($-$$) db 0

Loading…
Cancel
Save