74 lines
2.4 KiB
C
74 lines
2.4 KiB
C
/* Copyright (c) 2020 Kneron, Inc. All Rights Reserved.
|
|
*
|
|
* The information contained herein is property of Kneron, Inc.
|
|
* Terms and conditions of usage are described in detail in Kneron
|
|
* STANDARD SOFTWARE LICENSE AGREEMENT.
|
|
*
|
|
* Licensees are granted free, non-transferable use of the information.
|
|
* NO WARRANTY of ANY KIND is provided. This heading must NOT be removed
|
|
* from the file.
|
|
*/
|
|
|
|
/******************************************************************************
|
|
* Filename:
|
|
* ---------
|
|
* membase.h
|
|
*
|
|
* Description:
|
|
* ------------
|
|
*
|
|
*
|
|
******************************************************************************/
|
|
|
|
#ifndef _MEMBASE_H_
|
|
#define _MEMBASE_H_
|
|
|
|
/******************************************************************************
|
|
Head Block of The File
|
|
******************************************************************************/
|
|
// Sec 0: Comment block of the file
|
|
|
|
// Sec 1: Include File
|
|
/* user-defined ddr allocation table */
|
|
#include "usr_ddr_img_table.h"
|
|
|
|
/* user-defined flash allocation table */
|
|
#include "usr_flash_img_table.h"
|
|
// Sec 2: Constant Definitions, Imported Symbols, miscellaneous
|
|
|
|
/******************************************************************************
|
|
Declaration of External Variables & Functions
|
|
******************************************************************************/
|
|
// Sec 3: declaration of external variable
|
|
|
|
// Sec 4: declaration of external function prototype
|
|
|
|
/******************************************************************************
|
|
Declaration of data structure
|
|
******************************************************************************/
|
|
// Sec 5: structure, uniou, enum, linked list
|
|
|
|
/******************************************************************************
|
|
Declaration of Global Variables & Functions
|
|
******************************************************************************/
|
|
// Sec 6: declaration of global variable
|
|
|
|
// Sec 7: declaration of global function prototype
|
|
|
|
/******************************************************************************
|
|
Declaration of static Global Variables & Functions
|
|
******************************************************************************/
|
|
// Sec 8: declaration of static global variable
|
|
|
|
// Sec 9: declaration of static function prototype
|
|
|
|
/******************************************************************************
|
|
// Sec 10: C Functions
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
|
|
#endif //_MEMBASE_H_
|
|
|