File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 6262 uses : actions/upload-artifact@v4
6363 with :
6464 name : basicallylinux-alpha
65- path : build/kernel.bin
65+ path : build/kernel.bin
Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ list(REMOVE_ITEM ASM_SOURCES "${BOOT_ASM}")
6262set (ASM_SOURCES "${BOOT_ASM} " ${ASM_SOURCES} )
6363
6464# Exclude specific files if needed
65- list (FILTER C_SOURCES EXCLUDE REGEX "src/drivers/vga.c" )
65+ # list(FILTER C_SOURCES EXCLUDE REGEX "src/drivers/vga.c")
6666
6767# Build Kernel Binary
6868set (LINKER_SCRIPT "${CMAKE_CURRENT_SOURCE_DIR} /linker.ld" )
Original file line number Diff line number Diff line change 55
66void serial_init (void );
77void serial_write (const char * text );
8+ void serial_write_string (const char * text );
89void serial_write_len (const char * text , uint32_t len );
910void serial_write_hex32 (uint32_t value );
1011void serial_write_hex64 (uint64_t value );
Original file line number Diff line number Diff line change @@ -34,6 +34,10 @@ void serial_write(const char* text) {
3434 }
3535}
3636
37+ void serial_write_string (const char * text ) {
38+ serial_write (text );
39+ }
40+
3741void serial_write_len (const char * text , uint32_t len ) {
3842 for (uint32_t i = 0 ; i < len ; ++ i ) {
3943 if (text [i ] == '\n' ) {
You can’t perform that action at this time.
0 commit comments