STARTUP.A51 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288
  1. $NOMOD51
  2. ;------------------------------------------------------------------------------
  3. ; This file is part of the C51 Compiler package
  4. ; Copyright (c) 1988-2005 Keil Elektronik GmbH and Keil Software, Inc.
  5. ; Version 8.01
  6. ;
  7. ; *** <<< Use Configuration Wizard in Context Menu >>> ***
  8. ;------------------------------------------------------------------------------
  9. ; STARTUP.A51: This code is executed after processor reset.
  10. ;
  11. ; To translate this file use A51 with the following invocation:
  12. ;
  13. ; A51 STARTUP.A51
  14. ;
  15. ; To link the modified STARTUP.OBJ file to your application use the following
  16. ; Lx51 invocation:
  17. ;
  18. ; Lx51 your object file list, STARTUP.OBJ controls
  19. ;
  20. ;------------------------------------------------------------------------------
  21. ;
  22. ; User-defined <h> Power-On Initialization of Memory
  23. ;
  24. ; With the following EQU statements the initialization of memory
  25. ; at processor reset can be defined:
  26. ;
  27. ; <o> IDATALEN: IDATA memory size <0x0-0x100>
  28. ; <i> Note: The absolute start-address of IDATA memory is always 0
  29. ; <i> The IDATA space overlaps physically the DATA and BIT areas.
  30. ;IDATALEN EQU 0H
  31. IDATALEN EQU 80H
  32. ;
  33. ; <o> XDATASTART: XDATA memory start address <0x0-0xFFFF>
  34. ; <i> The absolute start address of XDATA memory
  35. XDATASTART EQU 0
  36. ;
  37. ; <o> XDATALEN: XDATA memory size <0x0-0xFFFF>
  38. ; <i> The length of XDATA memory in bytes.
  39. XDATALEN EQU 0
  40. ;
  41. ; <o> PDATASTART: PDATA memory start address <0x0-0xFFFF>
  42. ; <i> The absolute start address of PDATA memory
  43. PDATASTART EQU 0H
  44. ;
  45. ; <o> PDATALEN: PDATA memory size <0x0-0xFF>
  46. ; <i> The length of PDATA memory in bytes.
  47. PDATALEN EQU 0H
  48. ;
  49. ;</h>
  50. ;------------------------------------------------------------------------------
  51. ;
  52. ;<h> Reentrant Stack Initialization
  53. ;
  54. ; The following EQU statements define the stack pointer for reentrant
  55. ; functions and initialized it:
  56. ;
  57. ; <h> Stack Space for reentrant functions in the SMALL model.
  58. ; <q> IBPSTACK: Enable SMALL model reentrant stack
  59. ; <i> Stack space for reentrant functions in the SMALL model.
  60. IBPSTACK EQU 0 ; set to 1 if small reentrant is used.
  61. ; <o> IBPSTACKTOP: End address of SMALL model stack <0x0-0xFF>
  62. ; <i> Set the top of the stack to the highest location.
  63. IBPSTACKTOP EQU 0xFF +1 ; default 0FFH+1
  64. ; </h>
  65. ;
  66. ; <h> Stack Space for reentrant functions in the LARGE model.
  67. ; <q> XBPSTACK: Enable LARGE model reentrant stack
  68. ; <i> Stack space for reentrant functions in the LARGE model.
  69. XBPSTACK EQU 0 ; set to 1 if large reentrant is used.
  70. ; <o> XBPSTACKTOP: End address of LARGE model stack <0x0-0xFFFF>
  71. ; <i> Set the top of the stack to the highest location.
  72. XBPSTACKTOP EQU 0xFFFF +1 ; default 0FFFFH+1
  73. ; </h>
  74. ;
  75. ; <h> Stack Space for reentrant functions in the COMPACT model.
  76. ; <q> PBPSTACK: Enable COMPACT model reentrant stack
  77. ; <i> Stack space for reentrant functions in the COMPACT model.
  78. PBPSTACK EQU 0 ; set to 1 if compact reentrant is used.
  79. ;
  80. ; <o> PBPSTACKTOP: End address of COMPACT model stack <0x0-0xFFFF>
  81. ; <i> Set the top of the stack to the highest location.
  82. PBPSTACKTOP EQU 0xFF +1 ; default 0FFH+1
  83. ; </h>
  84. ;</h>
  85. ;------------------------------------------------------------------------------
  86. ;
  87. ; Memory Page for Using the Compact Model with 64 KByte xdata RAM
  88. ; <e>Compact Model Page Definition
  89. ;
  90. ; <i>Define the XDATA page used for PDATA variables.
  91. ; <i>PPAGE must conform with the PPAGE set in the linker invocation.
  92. ;
  93. ; Enable pdata memory page initalization
  94. PPAGEENABLE EQU 0 ; set to 1 if pdata object are used.
  95. ;
  96. ; <o> PPAGE number <0x0-0xFF>
  97. ; <i> uppermost 256-byte address of the page used for PDATA variables.
  98. PPAGE EQU 0
  99. ;
  100. ; <o> SFR address which supplies uppermost address byte <0x0-0xFF>
  101. ; <i> most 8051 variants use P2 as uppermost address byte
  102. PPAGE_SFR DATA 0A0H
  103. ;
  104. ; </e>
  105. ;------------------------------------------------------------------------------
  106. ; External var
  107. ; Standard SFR Symbols
  108. ACC DATA 0E0H
  109. B DATA 0F0H
  110. SP DATA 81H
  111. DPL DATA 82H
  112. DPH DATA 83H
  113. SCON DATA 98H
  114. TMOD DATA 89H
  115. TCON DATA 88H
  116. TH1 DATA 8DH
  117. SBUF DATA 99H
  118. MEX1 DATA 94H
  119. MEX2 DATA 95H
  120. ;sfr MIIC = 0xCF ; 8051 Mater IIC
  121. DMARSTART XDATA 8000H ;DMA ram start address
  122. DMAESTART XDATA 8005H ;DMA EEPROM start address
  123. DMADLEN XDATA 8002H ;DMA mov length
  124. DMATRIG XDATA 8004H ;0x8004[7] set to 1 start DMA, hardware clear to 0 after dma done
  125. sbit TI = 0x98^1
  126. sbit EA = 0xAF
  127. sbit PS = 0xBC
  128. sbit ES = 0xAC
  129. sbit ET1 = 0xAB
  130. NAME ?C_STARTUP
  131. ?C_C51STARTUP SEGMENT CODE
  132. ?STACK SEGMENT IDATA
  133. RSEG ?STACK
  134. DS 1
  135. EXTRN CODE (?C_START)
  136. PUBLIC ?C_STARTUP
  137. CSEG AT 0
  138. ?C_STARTUP: LJMP STARTUP1
  139. ;EEPROM_OFF: DB 00H, 00h
  140. ;APP_LEN: DB 20h, 00h
  141. RSEG ?C_C51STARTUP
  142. READ_APPINFO:
  143. CLR A
  144. MOVC A, @A+DPTR
  145. MOV R0, A
  146. MOV A, #0x01
  147. MOVC A, @A+DPTR
  148. MOV R1, A
  149. RET
  150. EEPROM_OFF: DB 00H, 00h
  151. APP_LEN: DB 70h, 00h
  152. STARTUP1:
  153. IF IDATALEN <> 0
  154. MOV R0,#IDATALEN - 1
  155. CLR A
  156. IDATALOOP: MOV @R0,A
  157. DJNZ R0,IDATALOOP
  158. ENDIF
  159. ;IF XDATALEN <> 0
  160. ; MOV DPTR,#XDATASTART
  161. ; MOV R7,#LOW (XDATALEN)
  162. ; IF (LOW (XDATALEN)) <> 0
  163. ; MOV R6,#(HIGH (XDATALEN)) +1
  164. ; ELSE
  165. ; MOV R6,#HIGH (XDATALEN)
  166. ; ENDIF
  167. ; CLR A
  168. ;XDATALOOP: MOVX @DPTR,A
  169. ; INC DPTR
  170. ; DJNZ R7,XDATALOOP
  171. ; DJNZ R6,XDATALOOP
  172. ;ENDIF
  173. IF PPAGEENABLE <> 0
  174. MOV PPAGE_SFR,#PPAGE
  175. ENDIF
  176. IF PDATALEN <> 0
  177. MOV R0,#LOW (PDATASTART)
  178. MOV R7,#LOW (PDATALEN)
  179. CLR A
  180. PDATALOOP: MOVX @R0,A
  181. INC R0
  182. DJNZ R7,PDATALOOP
  183. ENDIF
  184. IF IBPSTACK <> 0
  185. EXTRN DATA (?C_IBP)
  186. MOV ?C_IBP,#LOW IBPSTACKTOP
  187. ENDIF
  188. IF XBPSTACK <> 0
  189. EXTRN DATA (?C_XBP)
  190. MOV ?C_XBP,#HIGH XBPSTACKTOP
  191. MOV ?C_XBP+1,#LOW XBPSTACKTOP
  192. ENDIF
  193. IF PBPSTACK <> 0
  194. EXTRN DATA (?C_PBP)
  195. MOV ?C_PBP,#LOW PBPSTACKTOP
  196. ENDIF
  197. MOV SP,#?STACK-1
  198. ;if realchip ,go down ,if no flash,go ?c_start
  199. ;LJMP ?C_START
  200. MOV R0, #0x0
  201. MOV DPTR, #0x7009
  202. CLR A
  203. EXTRN DATA (ucDbBuffer)
  204. MOVC A, @A+DPTR
  205. MOV ucDbBuffer, A
  206. ; set dma xram start addr
  207. CLR A
  208. MOV DPTR, #0x8000 ; 0x8000 is xdata register addr, defines sram start addr low byte, 0x8000 [7:0]
  209. MOVX @DPTR, A
  210. INC DPTR ; 0x8001 is xdata register addr, defines sram start addr high byte, 0x8001[15:8]
  211. MOVX @DPTR, A
  212. ; set dma eeprom read length, this value is APP_LEN, APP_LEN low address stores high byte
  213. ; set read length low byte
  214. MOV DPTR, #APP_LEN
  215. LCALL READ_APPINFO
  216. MOV A, R1
  217. MOV DPTR, #0x8002
  218. MOVX @DPTR, A ; save to low byte
  219. MOV A, R0
  220. INC DPTR
  221. MOVX @DPTR, A ; save to low byte
  222. ; set eeprom offset
  223. ; set eeprom offset low byte
  224. MOV DPTR, #EEPROM_OFF
  225. LCALL READ_APPINFO
  226. MOV A, R1
  227. MOV DPTR, #0x8005
  228. MOVX @DPTR, A ; save to low byte
  229. MOV A, R0
  230. INC DPTR
  231. MOVX @DPTR, A ; save to low byte
  232. ; set eeprom third high byte
  233. INC DPTR
  234. CLR A
  235. MOVX @DPTR, A ; most high byte is 0
  236. ; trigger dma
  237. MOV DPTR, #0x8004 ; select 0x8004 register bit[7]
  238. MOV A, #0x80
  239. MOVX @DPTR, A ; trigger
  240. ; loop to check dma down
  241. DMA_LOOP:
  242. MOVX A, @DPTR
  243. JNZ DMA_LOOP
  244. ; switch to bank 14
  245. MOV MEX1, #0x0E
  246. MOV MEX2, #0x0E
  247. MOV DPTR, #0x0000
  248. CLR A
  249. LJMP ?C_START
  250. END