Compare commits

...

2 Commits

3 changed files with 5 additions and 9 deletions

View File

@ -50,7 +50,7 @@ void putpixel(
}
void putc(
const unsigned char *character,
const char *character,
unsigned short x,
unsigned short y,
unsigned char r,
@ -84,7 +84,7 @@ void putc(
}
void puts(
const unsigned char *text,
const char *text,
unsigned short x,
unsigned short y,
unsigned char r,

View File

@ -19,7 +19,7 @@ void putpixel(
unsigned char b
);
void putc(
const unsigned char *character,
const char *character,
unsigned short x,
unsigned short y,
unsigned char r,
@ -27,7 +27,7 @@ void putc(
unsigned char b
);
void puts(
const unsigned char *text,
const char *text,
unsigned short x,
unsigned short y,
unsigned char r,

View File

@ -3,11 +3,7 @@
.set MULTIBOOT_VIDEO_REQUEST, 1 << 2
.set MULTIBOOT_AOUT_KLUDGE, 0 << 16
.set MULTIBOOT_HEADER_MAGIC, 0x1BADB002
.set MULTIBOOT_HEADER_FLAGS, \
MULTIBOOT_PAGE_ALIGN \
| MULTIBOOT_MEMORY_INFO \
| MULTIBOOT_VIDEO_REQUEST \
| MULTIBOOT_AOUT_KLUDGE
.set MULTIBOOT_HEADER_FLAGS, MULTIBOOT_PAGE_ALIGN | MULTIBOOT_MEMORY_INFO | MULTIBOOT_VIDEO_REQUEST | MULTIBOOT_AOUT_KLUDGE
.set MULTIBOOT_CHECKSUM, -(MULTIBOOT_HEADER_MAGIC + MULTIBOOT_HEADER_FLAGS)
#.section ".multiboottbabeee"