summaryrefslogtreecommitdiffstats
path: root/sw/z80/kernel/boot_loader.c
diff options
context:
space:
mode:
authorleleraffa97@hotmail.it <leleraffa97@hotmail.it>2017-06-23 12:18:24 +0200
committerleleraffa97@hotmail.it <leleraffa97@hotmail.it>2017-06-23 12:18:24 +0200
commitac89960fbe89141aea31da9a329bfa39d67eede7 (patch)
tree5fd8f8baefd80d235ebe43167f89c580d137ce22 /sw/z80/kernel/boot_loader.c
parentlibc memset, memcmp (diff)
downloadz80uPC-ac89960fbe89141aea31da9a329bfa39d67eede7.tar.gz
z80uPC-ac89960fbe89141aea31da9a329bfa39d67eede7.zip
Order and update of the struct
Separation of boot and login sections Improuved program manager system
Diffstat (limited to '')
-rw-r--r--sw/z80/kernel/boot_loader.c24
1 files changed, 0 insertions, 24 deletions
diff --git a/sw/z80/kernel/boot_loader.c b/sw/z80/kernel/boot_loader.c
deleted file mode 100644
index 03a52b5..0000000
--- a/sw/z80/kernel/boot_loader.c
+++ /dev/null
@@ -1,24 +0,0 @@
-#include "boot.h"
-#include "progman.h"
-#include "string.h"
-
-#define DEFAULT_EXEC_STATUS 0x4000
-
-struct exec_status *status = EXEC_STATUS;
-
-void boot_init() {
-
- *status = DEFAULT_EXEC_STATUS;
-
- // TODO other stuff
-}
-
-int8_t authenticate(const char *pwd) {
-
- return !memcmp(PWD_ADDR, pwd, PWD_SIZE);
-}
-
-void set_pwd(const char *pwd) {
-
- memcpy(PWD_ADDR, pwd, PWD_SIZE);
-} \ No newline at end of file