Output more lines

This commit is contained in:
Baptiste Wicht 2013-10-26 19:32:47 +02:00
parent 7bbc6251ee
commit f38202565b

View File

@ -3,7 +3,8 @@ void k_print(const char* string);
extern "C" extern "C"
void __attribute__ ((section ("main_section"))) kernel_main(){ void __attribute__ ((section ("main_section"))) kernel_main(){
k_print_line("hello, world!"); k_print_line("hello, ");
k_print_line(" world!");
return; return;
} }