aboutsummaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
Diffstat (limited to 'apps')
-rw-r--r--apps/Makefile2
-rw-r--r--apps/init.c (renamed from apps/root.c)2
2 files changed, 2 insertions, 2 deletions
diff --git a/apps/Makefile b/apps/Makefile
index 56e5472..91d7920 100644
--- a/apps/Makefile
+++ b/apps/Makefile
@@ -1,6 +1,6 @@
# MIT License, Copyright (c) 2020 Marvin Borner
-COBJS = a.o b.o root.o
+COBJS = a.o b.o init.o
CC = ../cross/opt/bin/i686-elf-gcc
LD = ../cross/opt/bin/i686-elf-ld
OC = ../cross/opt/bin/i686-elf-objcopy
diff --git a/apps/root.c b/apps/init.c
index 097d0db..bd33033 100644
--- a/apps/root.c
+++ b/apps/init.c
@@ -42,7 +42,7 @@ void serial_print(const char *data)
void main()
{
- serial_print("root loaded\n");
+ serial_print("Init loaded\n");
__asm__ volatile("int $0x80");
while (1) {
};