www.pudn.com > GOS.rar > OPTION(w).H
#ifndef __OPTION_H__ #define __OPTION_H__ // ************* OPTIONS ************** #define MCLK 60000000 #define WRBUFOPT (0x8) //write_buf_on #define SYSCFG_0KB (0x0|WRBUFOPT) #define SYSCFG_4KB (0x2|WRBUFOPT) #define SYSCFG_8KB (0x6|WRBUFOPT) #define DRAM 1 //In case DRAM is used #define SDRAM 2 //In case SDRAM is used #define BDRAMTYPE SDRAM //used in power.c,44blib.c //BUSWIDTH; 16,32 #define BUSWIDTH (16) #define CACHECFG SYSCFG_0KB #define _RAM_STARTADDRESS 0xc000000 #define _ISR_STARTADDRESS 0xc7fff00 //GCS6:8MB SDRAM for SanJiang DVK (Eric Rong 2002-3-19-12-52) // NOTE:If you change this file, you should sync option.a (Eric Rong 2002-3-15) #define Non_Cache0_Start (0x2000000) //define Non-Cache Area0 #define Non_Cache0_End (0xc000000) #define Non_Cache1_Start (0xc400000) #define Non_Cache1_End (0xe000000) #endif /*__OPTION_H__*/