Kernel is now in C++ :)

This commit is contained in:
Bananymous
2022-11-12 21:30:26 +02:00
parent e6b4866ab0
commit 61609db228
7 changed files with 19 additions and 4 deletions

View File

@@ -13,4 +13,4 @@ _init:
_fini:
push %ebp
movl %esp, %ebp
/* gcc will nicely put the contents of crtbegin.o's .fini section here. */
/* gcc will nicely put the contents of crtbegin.o's .fini section here. */

View File

@@ -7,4 +7,4 @@
.section .fini
/* gcc will nicely put the contents of crtend.o's .fini section here. */
popl %ebp
ret
ret

View File

@@ -29,7 +29,7 @@ void terminal_clear(void)
terminal_putentryat(' ', terminal_color, x, y);
}
void terminal_initialize(void)
void terminal_initialize()
{
terminal_row = 0;
terminal_col = 0;