Last change
on this file since 806 was
758,
checked in by cfuguet, 10 years ago
|
tsar_boot: improving configuration infrastructure
- Using hard_config.h which respects the same sintax that
the hard_config.h file of all TSAR platforms.
This file can be then generated by the GIET-VM genmap
tool or written manually.
- All peripheral drivers have been moved to a drivers
directory and they are compiled as a static library.
This allows GCC to only include in the final .ELF the
object files of used peripherals and not all of them.
- Example hard_config.h and ldscripts have been introduced
in the conf directory.
- Improving comments in all files
|
File size:
233 bytes
|
Rev | Line | |
---|
[586] | 1 | #ifndef RESET_TTY_H |
---|
| 2 | #define RESET_TTY_H |
---|
[292] | 3 | |
---|
[586] | 4 | void reset_exit(); |
---|
| 5 | int reset_getc(char * c); |
---|
| 6 | void reset_putc(const char c); |
---|
| 7 | void reset_puts(const char *buffer); |
---|
| 8 | void reset_putx(unsigned int val); |
---|
| 9 | void reset_putd(unsigned int val); |
---|
[292] | 10 | |
---|
| 11 | #endif |
---|
Note: See
TracBrowser
for help on using the repository browser.