aboutsummaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorMarvin Borner2020-08-05 18:28:26 +0200
committerMarvin Borner2020-08-05 18:28:26 +0200
commit4af62bb53676b7f721b46cabee78cac3a557e924 (patch)
treeb9c7e615c3226d9822c22cdb6cdb326f379db73f /apps
parentb7f59b28b380d55f9e7abd8e450f1f9c7f050221 (diff)
Some proc things
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) {
};