inertial commit, libxil built externally

This commit is contained in:
2023-09-08 15:50:30 +02:00
commit 08302ed7d4
437 changed files with 141193 additions and 0 deletions

18
bsp_z7/coraZ7-10/inbyte.c Normal file
View File

@ -0,0 +1,18 @@
/******************************************************************************
* Copyright (c) 2021 Xilinx, Inc. All rights reserved.
* SPDX-License-Identifier: MIT
******************************************************************************/
#include "xparameters.h"
#include "xuartps_hw.h"
#ifdef __cplusplus
extern "C" {
#endif
char inbyte(void);
#ifdef __cplusplus
}
#endif
char inbyte(void) {
return XUartPs_RecvByte(STDIN_BASEADDRESS);
}