polka/src/Main.cc

31 lines
647 B
C++
Raw Normal View History

2016-02-26 22:31:34 -08:00
#include <stddef.h>
#include <stdint.h>
2016-02-27 13:50:51 -05:00
#include "Console.hh"
2016-02-26 22:31:34 -08:00
#if defined(__linux__)
#error "This file should be compiled with a cross-compiler, not the Linux system compiler!"
#endif
#if !defined(__i386__)
#error "This file should be compiled with an ix86-elf compiler!"
#endif
2016-02-27 12:34:36 -05:00
/** Called very early, before global initialization. */
2016-02-26 22:31:34 -08:00
extern "C"
void
kearly()
2016-02-27 13:50:51 -05:00
{
kernel::Console console;
console.clear(kernel::Console::Color::Blue);
2016-02-27 13:59:30 -05:00
console.writeString("Hello world!\n");
console.writeString("a\nb\nc\n");
2016-02-27 14:04:18 -05:00
console.writeString("abc\tdef\tghi\tjkl\tmno\n");
2016-02-27 13:50:51 -05:00
}
2016-02-26 22:31:34 -08:00
2016-02-27 12:34:36 -05:00
/** The beginning of the world... */
2016-02-26 22:31:34 -08:00
extern "C"
void
kmain()
{ }