Now this should be complete

Added basic shell and fixed various bugs...now iceos should be
"complete".
This commit is contained in:
ice-bit
2019-07-08 18:43:45 +02:00
parent 46e213e01c
commit 52bb2609ae
13 changed files with 243 additions and 64 deletions

20
kernel/shell/shell.h Normal file
View File

@@ -0,0 +1,20 @@
/**************************************
* iceOS Kernel *
* Developed by Marco 'icebit' Cetica *
* (c) 2019 *
* Released under GPLv3 *
* https://github.com/ice-bit/iceOS *
***************************************/
#ifndef _SHELL_H_
#define _SHELL_H_
#include <stdint.h>
#define bit(n) (1 << (n))
#define check_flag(flags, n) ((flags) & bit(n))
void helper();
void processCommand(uint8_t *cmd);
void iceos_ascii_logo();
#endif