⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 etc.c

📁 arm 应用程序原代码
💻 C
字号:
#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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -