X-Git-Url: https://scm.lunaixsky.com/lunaix-os.git/blobdiff_plain/db4d7d52fa00cc2fd3f25d971f57b73406d816ba..bef1210245bb3180a57f26405369654eaa477f63:/lunaix-os/includes/lunaix/lxconsole.h diff --git a/lunaix-os/includes/lunaix/lxconsole.h b/lunaix-os/includes/lunaix/lxconsole.h index a264766..fbf59a4 100644 --- a/lunaix-os/includes/lunaix/lxconsole.h +++ b/lunaix-os/includes/lunaix/lxconsole.h @@ -1,6 +1,13 @@ #ifndef __LUNAIX_LXCONSOLE_H #define __LUNAIX_LXCONSOLE_H +#define TCINTR 0x03 // ETX +#define TCEOF 0x04 // EOT +#define TCBS 0x08 // BS +#define TCLF 0x0A // LF +#define TCCR 0x0D // CR +#define TCSTOP 0x1A // SUB + void lxconsole_init(); @@ -10,6 +17,15 @@ console_write_str(char* str); void console_write_char(char chr); +void +console_view_up(); + +void +console_view_down(); + +void +console_flush(); + void console_start_flushing(); #endif /* __LUNAIX_LXCONSOLE_H */