Browse Source

Merge branch 'second_stage' of github.com:Rhodez-x/SingOS

special_first_anniversary_edition
Rhodez-x 5 years ago
parent
commit
7684e71e79
1 changed files with 10 additions and 7 deletions
  1. +10
    -7
      kernel.nasm

+ 10
- 7
kernel.nasm View File

@ -12,13 +12,16 @@ start_sing:
call dumpax
call printCRLF
xor ax, ax
xor bx, bx
xor cx, cx
xor dx, dx
mov ah, 0x0F
int 10
call dumpax
mov ah, 08h
mov dl, [global_disk_identifier]
mov bx, 0x0
mov es, bx
mov di, 0x0
int 13h
call dump_general_registers
call printCRLF
call printCRLF
call printCRLF
jmp sing_ready

Loading…
Cancel
Save