aboutsummaryrefslogtreecommitdiff
path: root/src/userspace/libc/stdio/putch.c
blob: 2dad6dc73f4830c3623d81798a5b96aab9b4e064 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#include <syscall.h>

int is_transmit_empty()
{
	u8 value;
	asm volatile("inb %1, %0" : "=a"(value) : "Nd"(0x3f8 + 5));
	return value & 0x20;
}

void putch(char ch)
{
	while (is_transmit_empty() == 0)
		;
	asm volatile("outb %0, %1" ::"a"(ch), "Nd"(0x3f8));
}

/*void putch(char ch)
{
	// TODO: Implement framebuffer writing
	//if (ch != 0)
	//syscall_putch(ch);
}*/