breakcmd.h

来自「T-Kernel Shell Sample」· C头文件 代码 · 共 44 行

H
44
字号
/*""FILE COMMENT""**************************************************************   System Name : RENESAS SH7145 micro T-Engine*   File Name   : breakcmd.h*   Version     : 1.01.00*   Contents    : T-Kernel T-Kernel Reference call*   Model       : RENESAS T-Engine / micro T-Engine*   CPU         : RENESAS T-Engine Series CPU*   Compiler    : GNU*   OS          : T-Kernel**   note        : The Software is being delivered to you "AS IS" *               : and Renesas,whether explicitly or implicitly makes  *               : no warranty as to its Use or performance. *               : RENESAS AND ITS SUPPLIER DO NOT AND CANNOT WARRANT *               : THE PERFORMANCE OR RESULTS YOU MAY OBTAIN  BY USING *               : THE SOFTWARE. AS TO ANY MATTER INCLUDING WITHOUT *               : LIMITATION NONINFRINGEMENT OF THIRD PARTY RIGHTS,*               : MERCHANTABILITY, INTEGRATION, SATISFACTORY QUALITY, *               : OR FITNESS FOR ANY PARTICULAR PURPOSE.**   Copyright (c) 2004-2006 RENESAS TECHNOLOGY CORP. All Rights Reserved.*   AND RENESAS SOLUTIONS CORP. All Rights Reserved.**   history     : 2004.12.21 ver1.00.00*               : 2006.02.01 ver1.01.00*""FILE COMMENT END""*********************************************************/#ifdef _MIC_SH7145_typedef struct break_regtable {	unsigned long mach;	unsigned long macl;	unsigned long pr;	unsigned long gbr;	unsigned long r[15]; /* R14->R4,R1,R0,R2,R3 */	unsigned long pc;	unsigned long sr;}RegTable;extern RegTable *regtable;void printBreakRegisters(RegTable *regs);void REG_cmd();void UserBreakHandler();#endif // _MIC_SH7145_

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?