blob: 21ad290c7666a13c12dea417415ce4c19ec6fcfb (
plain) (
blame)
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
|
unsigned char inb(unsigned short port)
{
unsigned char value;
__asm__ volatile("inb %1, %0" : "=a"(value) : "Nd"(port));
return value;
}
void outb(unsigned short port, unsigned char data)
{
__asm__ volatile("outb %0, %1" ::"a"(data), "Nd"(port));
}
int is_transmit_empty()
{
return inb(0x3f8 + 5) & 0x20;
}
void serial_put(char ch)
{
while (is_transmit_empty() == 0)
;
outb(0x3f8, (unsigned char)ch);
}
int main(int argc, char *argv[])
{
outb(0x3f8 + 1, 0x00);
outb(0x3f8 + 3, 0x80);
outb(0x3f8 + 0, 0x03);
outb(0x3f8 + 1, 0x00);
outb(0x3f8 + 3, 0x03);
outb(0x3f8 + 2, 0xC7);
outb(0x3f8 + 4, 0x0B);
serial_put('a');
while (1) {
};
return 0;
}
|