diff options
author | Alex AUVOLAT <alexis211@gmail.com> | 2012-05-17 17:56:23 +0200 |
---|---|---|
committer | Alex AUVOLAT <alexis211@gmail.com> | 2012-05-17 17:56:23 +0200 |
commit | 593bf4df3d8db49286c1a7ae4ef75c887b629930 (patch) | |
tree | 988a104c9611d72e1252282789688586efd9a394 /src/kernel/core/monitor.h | |
parent | 7c9a48b4e6d66cf4f62e7bad9e22ab06923e47ef (diff) | |
download | TCE-593bf4df3d8db49286c1a7ae4ef75c887b629930.tar.gz TCE-593bf4df3d8db49286c1a7ae4ef75c887b629930.zip |
Devices using the VFS structure. Basic keyboard handler.
Diffstat (limited to 'src/kernel/core/monitor.h')
-rw-r--r-- | src/kernel/core/monitor.h | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/src/kernel/core/monitor.h b/src/kernel/core/monitor.h deleted file mode 100644 index bb8e16e..0000000 --- a/src/kernel/core/monitor.h +++ /dev/null @@ -1,21 +0,0 @@ -#ifndef DEF_MONITOR_H -#define DEF_MONITOR_H - -#include "types.h" - -void monitor_put(char c); -void monitor_clear(); -void monitor_write(char *s); -void monitor_writeHex(uint32_t v); -void monitor_writeDec(uint32_t v); - -#define NL monitor_put('\n'); -#define TAB monitor_put('\t'); -#define WHERE { monitor_write("(kernel:"); \ - monitor_write(__FILE__); \ - monitor_write(":"); \ - monitor_writeDec(__LINE__); \ - monitor_write(")\t"); } - -#endif - |