14 lines
441 B
C
14 lines
441 B
C
/******************************************************************************
|
|
* Copyright (C) 2004 - 2020 Xilinx, Inc. All rights reserved.
|
|
* SPDX-License-Identifier: MIT
|
|
******************************************************************************/
|
|
#ifndef BL_ERRORS_H
|
|
#define BL_ERRORS_H
|
|
|
|
#define LD_MEM_WRITE_ERROR 1
|
|
#define LD_SREC_LINE_ERROR 2
|
|
#define SREC_PARSE_ERROR 3
|
|
#define SREC_CKSUM_ERROR 4
|
|
|
|
#endif /* BL_ERRORS_H */
|