mirror of
https://github.com/Zeal-Operating-System/ZealOS.git
synced 2024-12-26 23:36:32 +00:00
36 lines
967 B
C
36 lines
967 B
C
|
#include <stdint.h>
|
||
|
#include <stddef.h>
|
||
|
#include <limine.h>
|
||
|
|
||
|
// The Limine requests can be placed anywhere, but it is important that
|
||
|
// the compiler does not optimise them away, so, usually, they should
|
||
|
// be made volatile or equivalent.
|
||
|
|
||
|
static volatile struct limine_terminal_request terminal_request = {
|
||
|
.id = LIMINE_TERMINAL_REQUEST,
|
||
|
.revision = 0
|
||
|
};
|
||
|
|
||
|
static void done(void) {
|
||
|
for (;;) {
|
||
|
__asm__("hlt");
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// The following will be our kernel's entry point.
|
||
|
void _start(void) {
|
||
|
// Ensure we got a terminal
|
||
|
if (terminal_request.response == NULL
|
||
|
|| terminal_request.response->terminal_count < 1) {
|
||
|
done();
|
||
|
}
|
||
|
|
||
|
// We should now be able to call the Limine terminal to print out
|
||
|
// a simple "Hello World" to screen.
|
||
|
struct limine_terminal *terminal = terminal_request.response->terminals[0];
|
||
|
terminal_request.response->write(terminal, "Hello World", 11);
|
||
|
|
||
|
// We're done, just hang...
|
||
|
done();
|
||
|
}
|