Switching back to tabs for indent
This commit is contained in:
parent
b047235d75
commit
e438ef985a
7 changed files with 412 additions and 412 deletions
|
@ -68,8 +68,8 @@ void putchar(
|
|||
|
||||
unsigned char *rowdata = font8x8_basic[*character];
|
||||
unsigned char charx, chary, iy, ix;
|
||||
unsigned char sizex=2;
|
||||
unsigned char sizey=2;
|
||||
unsigned char sizex=5;
|
||||
unsigned char sizey=5;
|
||||
for (chary=0;chary<8;chary++) {
|
||||
for (charx=0;charx<8;charx++) {
|
||||
unsigned char pix = rowdata[chary] & 1 << charx;
|
||||
|
|
12
src/kernel.c
12
src/kernel.c
|
@ -87,12 +87,12 @@ void kmain (unsigned int mbootmagick, multiboot_info_t* mbootinfo)
|
|||
}
|
||||
}
|
||||
|
||||
putchar("r", 0, 0, 0xff, 0xff, 0xff);
|
||||
putchar("O", 16, 0, 0xff, 0xff, 0xff);
|
||||
putchar("S", 32, 0, 0xff, 0xff, 0xff);
|
||||
putchar("k", 48, 0, 0xff, 0xff, 0xff);
|
||||
putchar("a", 64, 0, 0xff, 0xff, 0xff);
|
||||
while(1){}
|
||||
putchar("r", 412, 5, 0xff, 0xff, 0xff);
|
||||
putchar("O", 452, 5, 0xff, 0xff, 0xff);
|
||||
putchar("S", 492, 5, 0xff, 0xff, 0xff);
|
||||
putchar("k", 532, 5, 0xff, 0xff, 0xff);
|
||||
putchar("a", 572, 5, 0xff, 0xff, 0xff);
|
||||
//while(1){}
|
||||
|
||||
serial_write_string("\nExecution finished, halting...\n");
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue