Last change
on this file since 505 was
348,
checked in by cfuguet, 12 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
|
Rev | Line | |
---|
[292] | 1 | #ifndef BOOT_TTY_H |
---|
| 2 | #define BOOT_TTY_H |
---|
| 3 | |
---|
| 4 | #include <io.h> |
---|
| 5 | #include <tty.h> |
---|
| 6 | |
---|
| 7 | void boot_exit(); |
---|
[348] | 8 | int boot_getc(char * c); |
---|
| 9 | void boot_putc(const char c); |
---|
[292] | 10 | void boot_puts(const char *buffer); |
---|
| 11 | void boot_putx(unsigned int val); |
---|
| 12 | void boot_putd(unsigned int val); |
---|
| 13 | |
---|
| 14 | #endif |
---|
Note: See
TracBrowser
for help on using the repository browser.