This repository has been archived by the owner on Nov 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
io.c
89 lines (74 loc) · 1.46 KB
/
io.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
/*
* io.c -
*/
#include <io.h>
#include <types.h>
/**************/
/** Screen ***/
/**************/
#define NUM_COLUMNS 80
#define NUM_ROWS 25
Byte x, y=19;
/* Read a byte from 'port' */
Byte inb (unsigned short port)
{
Byte v;
__asm__ __volatile__ ("inb %w1,%0":"=a" (v):"Nd" (port));
return v;
}
inline void BreakLine()
{
x = 0;
Word *screen = (Word *)0xb8000;
if (y == NUM_ROWS - 1)
{
for (int i = 0; i < NUM_ROWS - 1; ++i)
{
for (int j = 0; j < NUM_COLUMNS; ++j)
{
screen[(i * NUM_COLUMNS + j)] = screen[((i + 1) * NUM_COLUMNS + j)];
}
}
}
else
++y;
for (int j = 0; j < NUM_COLUMNS; ++j)
{
screen[((NUM_ROWS - 1) * NUM_COLUMNS + j)] = ' ';
}
}
void printccolor(char c, unsigned int console_color)
{
__asm__ __volatile__ ( "movb %0, %%al; outb $0xe9" ::"a"(c)); /* Magic BOCHS debug: writes 'c' to port 0xe9 */
if (c == '\n')
BreakLine();
else
{
Word ch = (Word) (c & 0x00FF) | console_color;
Word *screen = (Word *)0xb8000;
screen[(y * NUM_COLUMNS + x)] = ch;
if (++x >= NUM_COLUMNS)
BreakLine();
}
}
void printc(char c)
{
printccolor(c, CCWhite);
}
void printc_xy(Byte mx, Byte my, char c)
{
Byte cx, cy;
cx=x;
cy=y;
x=mx;
y=my;
printc(c);
x=cx;
y=cy;
}
void printk(char *string)
{
int i;
for (i = 0; string[i]; i++)
printc(string[i]);
}