Print sr & stuff

pull/1/head
E. Almqvist 4 years ago
parent 064fc9f2c7
commit dac804d3bf
  1. 8
      src/bootloader.asm

@ -2,18 +2,18 @@
%include "equ/ASCII.asm" %include "equ/ASCII.asm"
; eLIB ; eLIB
%include "elib/io.asm" ;; %include "elib/io.asm"
mov ah, BIOS_MODE_TELETYPE ; enter teletype mode (BIOS) mov ah, BIOS_MODE_TELETYPE ; enter teletype mode (BIOS)
mov al, ASCII_LINEBREAK ; linebreak mov al, ASCII_LINEBREAK ; linebreak
int BIOS_INT int BIOS_INT
test db "eOS", ASCII_CARRIAGE_RETURN, ASCII_LINEBREAK ;; test db "Welcome to eOS", ASCII_CARRIAGE_RETURN, ASCII_LINEBREAK
; Print "eOS" ; Print "eOS"
;; mov rcx, test
;; call print
; ALPHABET PRINT TEST ; ALPHABET PRINT TEST
mov al, 64 ; one less than A since we are printing in a loop and it increments before sys interupt mov al, 64 ; one less than A since we are printing in a loop and it increments before sys interupt

Loading…
Cancel
Save