/* * Copyright (C) 2017 Robin Krahl * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the Free * Software Foundation, either version 3 of the License, or (at your option) * any later version. * * This program is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * more details. */ #include #include #include #include #include void ker_dbg(char *s) { term_print(s); term_print("\n"); } uint32_t kernel_handle_interrupt(uint8_t no, uint32_t esp) { return esp; } void kernel_main(uint32_t multiboot, unsigned int *magicno) { term_clear(); gdt_init(); idt_init(); idt_activate(); term_print("garmos 0.1.0\n\n"); while (1); }