etc.c

来自「一些典型的阿arm嵌入式应用程序集锦!」· C语言 代码 · 共 23 行

C
23
字号
#include <string.h>
#include "..\..\inc\44b.h"
#include "..\..\inc\44blib.h"
#include "..\..\inc\def.h"
#include "..\..\inc\cputest\etc.h"

extern char Image_RO_Limit[];
extern char Image_RO_Base[];
extern char Image_RW_Limit[];
extern char Image_RW_Base[];
extern char Image_ZI_Limit[];
extern char Image_ZI_Base[];

void Etc(void)
{
    Uart_Printf("Image_RO_Base=%x\n",Image_RO_Base);
    Uart_Printf("Image_RO_Limit=%x\n",Image_RO_Limit);
    Uart_Printf("Image_RW_Base=%x\n",Image_RW_Base);
    Uart_Printf("Image_RW_Limit=%x\n",Image_RW_Limit);
    Uart_Printf("Image_ZI_Base=%x\n",Image_ZI_Base);
    Uart_Printf("Image_ZI_Limit=%x\n",Image_ZI_Limit);
}

⌨️ 快捷键说明

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