/*** Copyright 2004, Axel DΓΆrfler, axeld@pinc-software.de. All rights reserved.** Distributed under the terms of the MIT License.*/#include "keyboard.h"#include <boot/platform.h>/** Note, checking for keys doesn't seem to work in graphics* mode, at least in Bochs.*/static uint16check_for_key(void){return 0;}extern "C" voidclear_key_buffer(void){while (check_for_key() != 0);}extern "C" union keywait_for_key(void){union key key;key.ax=0;return key;}extern "C" uint32check_for_boot_keys(void){return 0;}