embeddedsw/lib/sw_apps/zynq_fsbl/misc/zc702/outbyte.c
Krishna Chaitanya cf6c0895e2 sw_apps:zynq_fsbl: Updated the permissions for FSBL files
Updated the permissions of sources files[c/h] in src and misc
folder to 644.

Signed-off-by: Krishna Chaitanya <kpataka@xilinx.com>
Acked-by: Anirudha Sarangi <anirudh@xilinx.com>
2014-09-02 11:21:03 +05:30

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