Option.inc
上传用户:qiulin1960
上传日期:2013-10-16
资源大小:2844k
文件大小:2k
源码类别:

Windows CE

开发平台:

Windows_Unix

  1. ;
  2. ; Copyright (c) Microsoft Corporation.  All rights reserved.
  3. ;
  4. ;
  5. ; Use of this source code is subject to the terms of the Microsoft end-user
  6. ; license agreement (EULA) under which you licensed this SOFTWARE PRODUCT.
  7. ; If you did not accept the terms of the EULA, you are not authorized to use
  8. ; this source code. For a copy of the EULA, please see the LICENSE.RTF on your
  9. ; install media.
  10. ;
  11. ;===========================================
  12. ; NAME: OPTION.A
  13. ; DESC: Configuration options for .S files
  14. ; HISTORY:
  15. ; 02.28.2002: ver 0.0
  16. ;===========================================
  17. ;Start address of each stacks,
  18. _STACK_BASEADDRESS EQU 0x31ff8000  
  19. _MMUTT_STARTADDRESS EQU 0x31ff8000  
  20. _ISR_STARTADDRESS EQU 0x31ffff00
  21. GBLL  PLL_ON_START  
  22. PLL_ON_START SETL  {TRUE}
  23. GBLL ENDIAN_CHANGE
  24. ENDIAN_CHANGE SETL {FALSE}
  25. GBLA ENTRY_BUS_WIDTH
  26. ENTRY_BUS_WIDTH SETA 16
  27. ;
  28. ; SMDK2440 TRUE  = SMDK2440 eval board
  29. ;          FALSE = Catfish product
  30. ;
  31.     GBLL    SMDK2440
  32. SMDK2440        SETL    {FALSE}
  33. ;BUSWIDTH = 16,32
  34. GBLA    BUSWIDTH ;max. bus width for the GPIO configuration
  35. BUSWIDTH SETA    32
  36. GBLA FCLK
  37. FCLK SETA 50000000
  38.     [ FCLK = 20000000
  39. M_MDIV EQU 0x20 ;Fin=12.0MHz Fout=30.0MHz
  40. M_PDIV EQU 0x4
  41. M_SDIV EQU 0x2
  42.     ]
  43.     [ FCLK = 30000000
  44. M_MDIV EQU 0x34 ;Fin=12.0MHz Fout=30.0MHz
  45. M_PDIV EQU 0x4
  46. M_SDIV EQU 0x2
  47.     ]
  48.     [ FCLK = 50000000
  49. M_MDIV EQU 0x5c ;Fin=12.0MHz Fout=50.0MHz
  50. M_PDIV EQU 0x4
  51. M_SDIV EQU 0x2
  52.     ]
  53.     [ FCLK = 60000000
  54. M_MDIV EQU 0x70 ;Fin=12.0MHz Fout=60.0MHz
  55. M_PDIV EQU 0x4
  56. M_SDIV EQU 0x2
  57.     ]
  58.     [ FCLK = 70000000
  59. M_MDIV EQU 0x84 ;Fin=12.0MHz Fout=70.0MHz
  60. M_PDIV EQU 0x4
  61. M_SDIV EQU 0x2
  62.     ]
  63.     [ FCLK = 75000000
  64. M_MDIV EQU 0x8e ;Fin=12.0MHz Fout=75.0MHz
  65. M_PDIV EQU 0x4
  66. M_SDIV EQU 0x2
  67.     ]
  68.         END