wm: teppich

ref: 91bae667fa4bb7089069694306e62b7b845560f5
dir: /pc/ps2.c/

View raw version
#include <u.h>
#include <x86.h>
#include <ps2.h>

uint8
ps2_read_status(void)
{
	return inb(KB_CTR);
}

void
ps2_init()
{
	int a = 256 - 3; // 11111100
	outb(0x64, SET_RATE);
	outb(0x64, a);
}

char
ps2_getc()
{
	char c;
	while(1)
	{
		if(!(ps2_read_status() & 1))
			continue;

		c = inb(KB);
		if(c & 0x80)
			continue;

		return keymap[c];
	}
}