aboutsummaryrefslogtreecommitdiff
path: root/src/userspace
diff options
context:
space:
mode:
authorMarvin Borner2020-02-15 16:57:57 +0100
committerMarvin Borner2020-02-15 16:57:57 +0100
commitf5b995586e28f7db426f4707a4348dc067df41c0 (patch)
tree37bfd54a3ecbe6dca0b2c4530dd28d3177c98362 /src/userspace
parent7ec74159de339baf3687bc59f1c18309b23ef36b (diff)
Quite many improvements
ok.
Diffstat (limited to 'src/userspace')
-rw-r--r--src/userspace/linker.ld21
-rw-r--r--src/userspace/main.c19
-rw-r--r--src/userspace/start.asm7
-rw-r--r--src/userspace/syscall.h2
4 files changed, 7 insertions, 42 deletions
diff --git a/src/userspace/linker.ld b/src/userspace/linker.ld
deleted file mode 100644
index 720acdc..0000000
--- a/src/userspace/linker.ld
+++ /dev/null
@@ -1,21 +0,0 @@
-OUTPUT_FORMAT("binary")
-
-SECTIONS
-{
- . = 0;
-
- .text ALIGN(4):
- {
- *(.text)
- }
-
- .data ALIGN(4):
- {
- *(.data)
- }
-
- .rodata ALIGN(4):
- {
- *(.rodata*)
- }
-} \ No newline at end of file
diff --git a/src/userspace/main.c b/src/userspace/main.c
index c2307a8..da9ee5b 100644
--- a/src/userspace/main.c
+++ b/src/userspace/main.c
@@ -1,5 +1,4 @@
#include <syscall.h>
-#include <mlibc/stdio.h>
#include <mlibc/stdlib.h>
int32_t starts_with(const char *a, const char *b)
@@ -9,18 +8,12 @@ int32_t starts_with(const char *a, const char *b)
return length_main < length_pre ? 0 : memcmp(b, a, length_pre) == 0;
}
-void user_main()
+void main()
{
- char text[] = "> Successfully switched to usermode!\n";
- printf(text);
+ // As char[]: 0xC105BFD6
+ // As const char *: 0x8048B20
- // TODO: PLEASE
- printf("If this message shows up, I'll be happy.\n");
-
- while (1) {
- char *input = readline();
- if (starts_with(input, "ls")) {
- printf(text);
- }
- };
+ char test[] = "banane";
+ syscall_write(test);
+ syscall_halt();
} \ No newline at end of file
diff --git a/src/userspace/start.asm b/src/userspace/start.asm
deleted file mode 100644
index c6bb2a0..0000000
--- a/src/userspace/start.asm
+++ /dev/null
@@ -1,7 +0,0 @@
-bits 32
-
-section .text
- global _start
- extern user_main
- _start:
- call user_main \ No newline at end of file
diff --git a/src/userspace/syscall.h b/src/userspace/syscall.h
index bd402a1..2d79458 100644
--- a/src/userspace/syscall.h
+++ b/src/userspace/syscall.h
@@ -77,4 +77,4 @@ DECL_SYSCALL1(alloc, uint32_t);
DECL_SYSCALL1(free, uint32_t);
-#endif
+#endif \ No newline at end of file