summaryrefslogtreecommitdiffhomepage
path: root/src/loader/gui.c
diff options
context:
space:
mode:
authorMarvin Borner2021-07-12 18:14:44 +0200
committerMarvin Borner2021-07-12 18:15:29 +0200
commit1b429c0fc28e5cd8b474ad5a1de1fa6f3d7c2e2a (patch)
tree593af3e3ec78795bb47553f492db07fb7e87e373 /src/loader/gui.c
parentd414d2f6f46bd425d727af5baae3e2658d6e1384 (diff)
Renamed files to match presentation
Diffstat (limited to 'src/loader/gui.c')
-rw-r--r--src/loader/gui.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/loader/gui.c b/src/loader/gui.c
index 6ae35e6..2932dcc 100644
--- a/src/loader/gui.c
+++ b/src/loader/gui.c
@@ -1,19 +1,19 @@
// MIT License, Copyright (c) 2021 Marvin Borner
// GUI - selection interface
-#include <cfg.h>
+#include <config.h>
#include <cpu.h>
#include <def.h>
#include <gui.h>
-#include <int.h>
+#include <interrupt.h>
#include <log.h>
-#include <pnc.h>
+#include <panic.h>
-struct {
- struct cfg_entry *cfg;
+static struct {
+ struct config_entry *cfg;
} gui_entries[16] = { 0 };
-static u8 gui_entry_add(struct cfg_entry *entry)
+static u8 gui_entry_add(struct config_entry *entry)
{
static u8 index = 0;
assert(index + 1 < (u8)sizeof(gui_entries));
@@ -32,7 +32,7 @@ static u8 gui_entry_exists(u8 entry)
static void gui_entry_select(u8 entry)
{
if (gui_entry_exists(entry))
- cfg_exec(gui_entries[entry].cfg);
+ config_exec(gui_entries[entry].cfg);
else
log("Invalid selection\n");
}
@@ -71,8 +71,8 @@ void gui_draw(void)
vga_clear();
vga_log("SegelBoot by Marvin Borner\n\n");
- cfg_foreach(&gui_entry_add);
+ config_foreach(&gui_entry_add);
gui_entries_draw();
- int_event_handler_add(1, &gui_keyboard_handler);
+ interrupt_event_handler_add(1, &gui_keyboard_handler);
}