#ifndef BOOT_TTY_H #define BOOT_TTY_H #include #include void boot_exit(); int boot_getc(char * c); void boot_putc(const char c); void boot_puts(const char *buffer); void boot_putx(unsigned int val); void boot_putd(unsigned int val); #endif