lh | 9ed821d | 2023-04-07 01:36:19 -0700 | [diff] [blame] | 1 | /*******************************************************************************
|
| 2 | * °æÈ¨ËùÓÐ (C)2015, ÖÐÐËͨѶ¹É·ÝÓÐÏÞ¹«Ë¾¡£
|
| 3 | *
|
| 4 | * ÎļþÃû³Æ: ram_config.h
|
| 5 | * Îļþ±êʶ: ram_config.h
|
| 6 | * ÄÚÈÝÕªÒª: ´æ´¢µØÖ·ÅäÖÃÍ·Îļþ
|
| 7 | * ʹÓ÷½·¨: #include "ram_config.h"
|
| 8 | *
|
| 9 | * ÐÞ¸ÄÈÕÆÚ °æ±¾ºÅ Ð޸ıê¼Ç ÐÞ¸ÄÈË ÐÞ¸ÄÄÚÈÝ
|
| 10 | * ------------------------------------------------------------------------------
|
| 11 | * 2015/04/16 V1.0 Create ÁõÑÇÄÏ ´´½¨
|
| 12 | *
|
| 13 | *******************************************************************************/
|
| 14 |
|
| 15 | #ifndef _RAM_CONFIG_H
|
| 16 | #define _RAM_CONFIG_H
|
| 17 |
|
| 18 | /*******************************************************************************
|
| 19 | * Í·Îļþ *
|
| 20 | *******************************************************************************/
|
| 21 | #if defined (_CHIP_ZX297520)
|
| 22 | #include "ram_config_7520.h"
|
| 23 | #include "psm_ram_config_7520.h"
|
| 24 | #elif defined (_CHIP_ZX297520V1_1)
|
| 25 | #include "ram_config_7520v1_1.h"
|
| 26 | #include "psm_ram_config_7520v1_1.h"
|
| 27 | #elif defined (_CHIP_ZX297520V2)
|
| 28 | #include "ram_config_7520v2.h"
|
| 29 | #include "psm_ram_config_7520v2.h"
|
| 30 | #elif defined (_CHIP_ZX297520V3)
|
| 31 | #include "ram_config_7520v3.h"
|
| 32 | #include "psm_ram_config_7520v3.h"
|
| 33 | #elif defined (_CHIP_ZX297510)
|
| 34 | #include "ram_config_7510.h"
|
| 35 | #elif defined (_CHIP_ZX2804)
|
| 36 | #include "ram_config_2804.h"
|
| 37 | #include "psm_ram_config_2804.h"
|
| 38 | #elif defined (_OS_WIN)
|
| 39 | //#include "ram_config_7520v3.h"
|
| 40 | //#include "psm_ram_config_7520v3.h"
|
| 41 | #else
|
| 42 | # error "unknown chipset"
|
| 43 | #endif
|
| 44 |
|
| 45 | /*******************************************************************************
|
| 46 | * ºê¶¨Òå *
|
| 47 | *******************************************************************************/
|
| 48 |
|
| 49 | /*******************************************************************************
|
| 50 | * Êý¾ÝÀàÐͶ¨Òå *
|
| 51 | *******************************************************************************/
|
| 52 |
|
| 53 | /*******************************************************************************
|
| 54 | * È«¾Ö±äÁ¿ÉùÃ÷ *
|
| 55 | *******************************************************************************/
|
| 56 |
|
| 57 | /*******************************************************************************
|
| 58 | * È«¾Öº¯ÊýÉùÃ÷ *
|
| 59 | *******************************************************************************/
|
| 60 |
|
| 61 | #endif // #ifndef _RAM_CONFIG_H
|
| 62 |
|