etc.c
来自「三星公司的开发板与原理图」· 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 + -
显示快捷键?