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 mov bx, welcomeString ; Print the welcome string
call println call println
mov bx, infoString
call println
jmp $ ; inf loop jmp $ ; inf loop
;; includes ;; includes
@ -14,7 +17,8 @@ jmp $ ; inf loop
%include "elib/io.asm" %include "elib/io.asm"
;; Data ;; 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 ; Magic BIOS number
times 510-($-$$) db 0 times 510-($-$$) db 0

Loading…
Cancel
Save