diff options
Diffstat (limited to 'sw/z80/kernel/login.c')
-rw-r--r-- | sw/z80/kernel/login.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/sw/z80/kernel/login.c b/sw/z80/kernel/login.c new file mode 100644 index 0000000..5e100bf --- /dev/null +++ b/sw/z80/kernel/login.c @@ -0,0 +1,12 @@ +#include "login.h" +#include "string.h" + +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 |