Rev 588 | Rev 687 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 588 | Rev 623 | ||
---|---|---|---|
Line 40... | Line 40... | ||
40 | /* |
40 | /* |
41 | * The EGA driver. |
41 | * The EGA driver. |
42 | * Simple and short. Function for displaying characters and "scrolling". |
42 | * Simple and short. Function for displaying characters and "scrolling". |
43 | */ |
43 | */ |
44 | 44 | ||
45 | static spinlock_t egalock; |
45 | SPINLOCK_INITIALIZE(egalock); |
46 | static __u32 ega_cursor; |
46 | static __u32 ega_cursor; |
47 | 47 | ||
48 | static void ega_putchar(chardev_t *d, const char ch); |
48 | static void ega_putchar(chardev_t *d, const char ch); |
49 | 49 | ||
50 | chardev_t ega_console; |
50 | chardev_t ega_console; |