
Upadted the GPL licence for FSBL ps7_init gpl files. Added support for FSBL building for microzed and zed boards Signed-off-by: Krishna Chaitanya <kpataka@xilinx.com> Acked-by: Srikanth Vemula <svemula@xilinx.com>
15 lines
211 B
C
15 lines
211 B
C
#include "xparameters.h"
|
|
#include "xuartps_hw.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
void outbyte(char c);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
void outbyte(char c) {
|
|
XUartPs_SendByte(STDOUT_BASEADDRESS, c);
|
|
}
|