embeddedsw/lib/sw_apps/zynq_fsbl/misc/zc702/outbyte.c

16 lines
211 B
C
Raw Normal View History

#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);
}