📄 ppc_memory.h
字号:
/* This program is free software; you can redistribute it and/or modifyit under the terms of the GNU General Public License as published bythe Free Software Foundation; either version 2, or (at your option)any later version.This program is distributed in the hope that it will be useful,but WITHOUT ANY WARRANTY; without even the implied warranty ofMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See theGNU General Public License for more details.You should have received a copy of the GNU General Public License alongwith this program; if not, write to the Free Software Foundation, Inc.,59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *//* * 12/06/2007 Michael.Kang <blackfin.kang@gmail.com> */#ifndef __PPC_MEMORY_H__#define __PPC_MEMORY_H__//byte boot_rom[8 * 1024 * 1024];/* default 8M boot rom for e500 core */#define INIT_RAM_SIZE 0x4000extern byte * init_ram; /* 16k init ram for 8560 */extern byte * boot_rom; /* default 8M bootrom for 8560 */extern byte * ddr_ram; /* 64M DDR SDRAM */extern unsigned long init_ram_start_addr, init_ram_size;extern uint32 boot_romSize;extern uint32 boot_rom_start_addr;#define DEFAULT_BOOTROM_SIZE (8 * 1024 * 1024)#define DDR_RAM_START_ADDR (0x0)#define DDR_RAM_SIZE (64 * 1024 * 1024)#define MPC8650_DPRAM_SIZE 0xC000#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -