Last change
on this file since 291 was
276,
checked in by bouyer, 12 years ago
|
A boot loader to be stored in ROM of a TSAR platform.
Based on Cesar FUGUET's work.
Platform-specific files are in a subdirectory, e.g. platform_fpga_de2-115,
so the same code can be targetted to different platforms.
The platform is selected with the PLATFORM_DIR environnement variable.
The supported variant are soclib and fpga, the later being the default
and the former selected by defining the SOCLIB environnement variable.
The boot loader embeds a binary device tree describing the platform,
to be used by the loaded software.
|
File size:
203 bytes
|
Rev | Line | |
---|
[276] | 1 | #ifndef BOOT_TTY_H |
---|
| 2 | #define BOOT_TTY_H |
---|
| 3 | |
---|
| 4 | #include <io.h> |
---|
| 5 | #include <tty.h> |
---|
| 6 | |
---|
| 7 | void boot_exit(); |
---|
| 8 | void boot_puts(const char *buffer); |
---|
| 9 | void boot_putx(unsigned int val); |
---|
| 10 | void boot_putd(unsigned int val); |
---|
| 11 | |
---|
| 12 | #endif |
---|
Note: See
TracBrowser
for help on using the repository browser.