?? target.h
字號:
/****************************************Copyright (c)**************************************************
** Guangzhou ZHIYUAN electronics Co.,LTD.
**
** http://www.zyinside.com
**
**--------------File Info-------------------------------------------------------------------------------
** File Name: target.h
** Last modified Date: 2005-12-31
** Last Version: v1.0
** Description: 目標板特殊的代碼,包括異常處理程序和目標板初始化程序
**
**------------------------------------------------------------------------------------------------------
** Created By: 黃紹斌
** Created date: 2005-12-31
** Version: v1.0
** Descriptions:
**
**------------------------------------------------------------------------------------------------------
** Modified by:
** Modified date:
** Version:
** Descriptions:
**
********************************************************************************************************/
#ifndef __TARGET_H
#define __TARGET_H
/********************************************************************************************************
** "以下宏和常量定義"
** consts and marcos define here
********************************************************************************************************/
/********************************************************************************************************
** "以下結構體、共用體和類"
** structs,unions and classes define here
********************************************************************************************************/
#ifndef IN_TARGET
#ifdef __cplusplus
extern "C" {
#endif
/********************************************************************************************************
** "以下為全局變量聲明"
** declare global variables here
********************************************************************************************************/
/********************************************************************************************************
** "以下為接口聲明"
** declare functions here
********************************************************************************************************/
/********************************************************************************************************
** Function name: ResetInit
** Descriptions: 復位入口
** Input: 無
** Output: 無
********************************************************************************************************/
extern void ResetInit(void);
/********************************************************************************************************
** Function name: DisableMMU
** Descriptions: 禁止MMU
** Input: 無
** Output: 無
********************************************************************************************************/
extern void DisableMMU(void);
/********************************************************************************************************
** Function name: EnableICache
** Descriptions: 使能指令CACHE
** Input: 無
** Output: 無
********************************************************************************************************/
extern void EnableICache(void);
/********************************************************************************************************
** Function name: DisableICache
** Descriptions: 禁止指令CACHE
** Input: 無
** Output: 無
********************************************************************************************************/
extern void DisableICache(void);
/********************************************************************************************************
** Function name: EnableDCache
** Descriptions: 使能數據CACHE
** Input: 無
** Output: 無
********************************************************************************************************/
extern void EnableDCache(void);
/********************************************************************************************************
** Function name: DisableDCache
** Descriptions: 禁止數據CACHE
** Input: 無
** Output: 無
********************************************************************************************************/
extern void DisableDCache(void);
/********************************************************************************************************/
#ifdef __cplusplus
}
#endif
#endif // IN_TARGET
#endif // __TARGET_H
/*********************************************************************************************************
** End Of File
********************************************************************************************************/
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -