-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathio.c
More file actions
92 lines (79 loc) · 1.35 KB
/
Copy pathio.c
File metadata and controls
92 lines (79 loc) · 1.35 KB
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
90
91
92
/*
* io.c -
*/
#include <io.h>
/**************/
/** Screen ***/
/**************/
#define NUM_COLUMNS 80
#define NUM_ROWS 25
Byte x, y = 15;
/* Read a byte from 'port' */
Byte
inb (unsigned short port)
{
Byte v;
__asm__ __volatile__ ("inb %w1,%0":"=a" (v):"Nd" (port));
return v;
}
void
printc (char c)
{
Word ch = (Word) (c & 0x00FF) | 0x0200;
DWord screen = 0xb8000 + (y * NUM_COLUMNS + x) * 2;
/*Implementem \n i \t */
if (c == '\n')
{
x = 0;
y++;
}
else
{
if (c == '\t')
{
x += 8;
if (x >= NUM_COLUMNS)
{
x = 0;
if (++y >= NUM_ROWS)
y = 0;
}
}
else
{
if (++x >= NUM_COLUMNS)
{
x = 0;
if (++y >= NUM_ROWS)
y = 0;
}
asm ("movw %0, (%1)":
:"g" (ch), "g" (screen));
}
}
//Sortida per consola
__asm__ __volatile__ ("movb %0, %%al\n" "outb $0xe9"::"g" (c));
}
void
printk (char *string)
{
int i;
for (i = 0; string[i]; i++)
printc (string[i]);
}
/**Funcions d'escriptura per pantalla amb coordenades que hem creat*/
void
printk_xy (int x, int y, char *string)
{
int i;
for (i = 0; string[i]; i++)
printc_xy (x + i, y, string[i]);
}
void
printc_xy (int x, int y, char c)
{
Word ch = (Word) (c & 0x00FF) | 0x0200;
DWord screen = 0xb8000 + (y * NUM_COLUMNS + x) * 2;
asm ("movw %0, (%1)":
:"g" (ch), "g" (screen));
}