git://scm.lunaixsky.com
/
lunaix-os.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Timer re-worked!
[lunaix-os.git]
/
lunaix-os
/
kernel
/
tty
/
tty.c
diff --git
a/lunaix-os/kernel/tty/tty.c
b/lunaix-os/kernel/tty/tty.c
index e9aa42aba3fe09c713e2508baf2e7e0a07844726..cc70087992a14ed4c9167ec3d29de89a15f667d7 100644
(file)
--- a/
lunaix-os/kernel/tty/tty.c
+++ b/
lunaix-os/kernel/tty/tty.c
@@
-1,17
+1,17
@@
#include <klibc/string.h>
#include <lunaix/tty/tty.h>
#include <klibc/string.h>
#include <lunaix/tty/tty.h>
-#include <lunaix/co
nstants
.h>
+#include <lunaix/co
mmon
.h>
#include <stdint.h>
#define TTY_WIDTH 80
#define TTY_HEIGHT 25
#include <stdint.h>
#define TTY_WIDTH 80
#define TTY_HEIGHT 25
-vga_attribute* tty_vga_buffer = (vga_attribute*)VGA_BUFFER_PADDR;
+
static
vga_attribute* tty_vga_buffer = (vga_attribute*)VGA_BUFFER_PADDR;
-vga_attribute tty_theme_color = VGA_COLOR_BLACK;
+
static
vga_attribute tty_theme_color = VGA_COLOR_BLACK;
-uint32_t tty_x = 0;
-uint16_t tty_y = 0;
+
static
uint32_t tty_x = 0;
+
static
uint16_t tty_y = 0;
void tty_init(void* vga_buf) {
tty_vga_buffer = (vga_attribute*)vga_buf;
void tty_init(void* vga_buf) {
tty_vga_buffer = (vga_attribute*)vga_buf;