Sync Push

This commit is contained in:
Sylar 2025-04-06 16:31:29 +02:00
parent 6ba7a1e098
commit e3cb57e454

View file

@ -5,6 +5,7 @@
@include <../bios_api.dss> @include <../bios_api.dss>
@include <palette.dss> @include <palette.dss>
@include <keyboard_driver.dss>
## ========================================================================================================================= ## =========================================================================================================================
@ -27,6 +28,12 @@ _kernel0_main:
push $test_str push $test_str
push 1 push 1
call $_print_string call $_print_string
## Init Keyboard driver
push $_key_pressed ## KeyPressed handler address passed to the _init_keyboard subroutine
push 1
call $_init_keyboard
hlt hlt
## ========================================================================================================================= ## =========================================================================================================================