source: trunk/softs/tsar_boot/include/boot_tty.h @ 348

Last change on this file since 348 was 348, checked in by cfuguet, 11 years ago

Adding the boot_putc and the boot_getc in the functions
pointer table defined at the beginning of the reset code

File size: 259 bytes
Line 
1#ifndef BOOT_TTY_H
2#define BOOT_TTY_H
3
4#include <io.h>
5#include <tty.h>
6
7void boot_exit();
8int  boot_getc(char * c);
9void boot_putc(const char c);
10void boot_puts(const char *buffer);
11void boot_putx(unsigned int val);
12void boot_putd(unsigned int val);
13
14#endif
Note: See TracBrowser for help on using the repository browser.