Option.inc
资源名称:SMDK2440.rar [点击查看]
上传用户:qiulin1960
上传日期:2013-10-16
资源大小:2844k
文件大小:2k
源码类别:
Windows CE
开发平台:
Windows_Unix
- ;
- ; Copyright (c) Microsoft Corporation. All rights reserved.
- ;
- ;
- ; Use of this source code is subject to the terms of the Microsoft end-user
- ; license agreement (EULA) under which you licensed this SOFTWARE PRODUCT.
- ; If you did not accept the terms of the EULA, you are not authorized to use
- ; this source code. For a copy of the EULA, please see the LICENSE.RTF on your
- ; install media.
- ;
- ;===========================================
- ; NAME: OPTION.A
- ; DESC: Configuration options for .S files
- ; HISTORY:
- ; 02.28.2002: ver 0.0
- ;===========================================
- ;Start address of each stacks,
- _STACK_BASEADDRESS EQU 0x31ff8000
- _MMUTT_STARTADDRESS EQU 0x31ff8000
- _ISR_STARTADDRESS EQU 0x31ffff00
- GBLL PLL_ON_START
- PLL_ON_START SETL {TRUE}
- GBLL ENDIAN_CHANGE
- ENDIAN_CHANGE SETL {FALSE}
- GBLA ENTRY_BUS_WIDTH
- ENTRY_BUS_WIDTH SETA 16
- ;
- ; SMDK2440 TRUE = SMDK2440 eval board
- ; FALSE = Catfish product
- ;
- GBLL SMDK2440
- SMDK2440 SETL {FALSE}
- ;BUSWIDTH = 16,32
- GBLA BUSWIDTH ;max. bus width for the GPIO configuration
- BUSWIDTH SETA 32
- GBLA FCLK
- FCLK SETA 50000000
- [ FCLK = 20000000
- M_MDIV EQU 0x20 ;Fin=12.0MHz Fout=30.0MHz
- M_PDIV EQU 0x4
- M_SDIV EQU 0x2
- ]
- [ FCLK = 30000000
- M_MDIV EQU 0x34 ;Fin=12.0MHz Fout=30.0MHz
- M_PDIV EQU 0x4
- M_SDIV EQU 0x2
- ]
- [ FCLK = 50000000
- M_MDIV EQU 0x5c ;Fin=12.0MHz Fout=50.0MHz
- M_PDIV EQU 0x4
- M_SDIV EQU 0x2
- ]
- [ FCLK = 60000000
- M_MDIV EQU 0x70 ;Fin=12.0MHz Fout=60.0MHz
- M_PDIV EQU 0x4
- M_SDIV EQU 0x2
- ]
- [ FCLK = 70000000
- M_MDIV EQU 0x84 ;Fin=12.0MHz Fout=70.0MHz
- M_PDIV EQU 0x4
- M_SDIV EQU 0x2
- ]
- [ FCLK = 75000000
- M_MDIV EQU 0x8e ;Fin=12.0MHz Fout=75.0MHz
- M_PDIV EQU 0x4
- M_SDIV EQU 0x2
- ]
- END