-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSTART900.A51
313 lines (280 loc) · 9.97 KB
/
START900.A51
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
;------------------------------------------------------------------------------
; This file is part of the C51 Compiler package
; Startup Code for the Philips LPC9xx devices
; Copyright (c) 1988-2005 Keil Elektronik GmbH and Keil Software, Inc.
; Version 2.3
;
; *** <<< Use Configuration Wizard in Context Menu >>> ***
;------------------------------------------------------------------------------
; START900.A51: This code is executed after processor reset.
; You may add this file to a uVision2 project.
;
; To translate this file use Ax51 with the following invocation:
;
; Ax51 START900.A51 "your options"
;
; To link the modified START900.OBJ file to your application use the following
; Lx51 invocation:
;
; Lx51 your object file list, START900.OBJ controls
;
;------------------------------------------------------------------------------
;
; User-defined <h> Power-On Initialization of Memory
;
; With the following statements the initialization of memory
; at processor reset can be defined:
;
; <o> IDATALEN: IDATA memory length <0x0-0x100>
; <i> Notes: The absolute start-address of IDATA memory is always 0
; <i> The IDATA space overlaps physically the DATA and BIT areas of the
; <i> LPC9xx device.
IDATALEN EQU 0x100 ; the length of IDATA memory in bytes.
;
; <o> XDATASTART: XDATA memory start address <0x0-0xFFFF>
; <i>the absolute start-address of XDATA memory
XDATASTART EQU 0
;
; <o> XDATALEN: XDATA memory length <0x0-0xFFFF>
; <i>the length of XDATA memory in bytes.
XDATALEN EQU 512
;
; </h>
;------------------------------------------------------------------------------
;
; <h> Reentrant Stack Initialization
;
; The following EQU statements define the stack pointer for reentrant
; functions and initialized it:
;
; <h> Stack Space for reentrant functions in the SMALL model.
; <q> IBPSTACK: Enable SMALL model reentrant stack
; <i> Stack space for reentrant functions in the SMALL model.
IBPSTACK EQU 0 ; set to 1 if small reentrant is used.
; <o> IBPSTACKTOP: End address of SMALL model stack <0x0-0xFF>
; <i> Set the top of the stack to the highest location.
IBPSTACKTOP EQU 0xFF +1 ; default 0FFH+1
; </h>
;
; <h> Stack Space for reentrant functions in the LARGE model.
; <q> XBPSTACK: Enable LARGE model reentrant stack
; <i> Stack space for reentrant functions in the LARGE model.
XBPSTACK EQU 0 ; set to 1 if large reentrant is used.
; <o> XBPSTACKTOP: End address of LARGE model stack <0x0-0x1FF>
; <i> Set the top of the stack to the highest location.
XBPSTACKTOP EQU 0x1FF +1 ; default 01FFH+1
; </h>
;
; <h> Stack Space for reentrant functions in the COMPACT model.
; <q> PBPSTACK: Enable COMPACT model reentrant stack
; <i> Stack space for reentrant functions in the COMPACT model.
PBPSTACK EQU 1 ; set to 1 if compact reentrant is used.
; <o> PBPSTACKTOP: End address of COMPACT model stack <0x0-0xFF>
; <i> Set the top of the stack to the highest location.
PBPSTACKTOP EQU 0xFF +1 ; default 0FFH+1
; </h>
; </h>
;------------------------------------------------------------------------------
;
; Setup LPC9xx Configuration Register (UCFG1, BOOTVEC, BOOTSTAT, SEC0..SEC7)
; <h> Configuration UCFG1
; Oscillator Configuration (UCFG1.0 .. UCFG1.2)
; <o> FOSC: (UCFG1.0 .. UCFG1.2)
; FOCS Val Description
; -------- -----------
; <0=> high frequency crystal or resonator (4MHz .. 20MHz)
; <1=> medium frequency crystal or resonator (100kHz .. 4MHz)
; <2=> low frequency crystal (20kHz .. 100kHz)
; <3=> internal RC oscillator (7.373MHz +/- 2.5 percent)
; <4=> internal Watchdog oscillator (400kHz +20/-30 percent)
; <7=> external clock input on X1
; <i> Oscillator Configuration
FOSC EQU 3 ; default on unprogrammed parts: 3 = internal RC oscillator
; <o> WDSE: (UCFG1.4)
; WDSE Val Description
; -------- -----------
; <0=> User can set WDT-Osc. as clock source
; <1=> WDT is running with WDT-Osc.
; <i> Watchdog Saftey Enable (0 = default on unprogrammed part)
WDSE EQU 0 ; 0 = user can set WDCLK to select clock source(default on unprogrammed part)
;
; <o> BOE: (UCFG1.5)
; BOE Val Description
; ------- -----------
; <0=> Disable
; <1=> Enable
; <i> Brownout Detect Enable (1 = default on unprogrammed part)
BOE EQU 1
;
; <o> RPE: (UCFG1.6)
; RPE Val Description
; -------- -----------
; <0=> Disable (P1.5 can use as input pin)
; <1=> Enable (P1.5 used as reset pin)
; <i> Reset PIN enable (0 = default on unprogrammed part)
RPE EQU 1
;
; <o> WDTE: (UCFG1.7)
; WDTE Val Description
; -------- -----------
; <0=> Disable (WDSE has no effect)
; <1=> Enable
; <i> Watchdog timer enable (0 = default on unprogrammed part)
WDTE EQU 0
; </h>
;
; <h> Boot Program
; <o> BSB: (BOOTSTAT.0)
; BSB Val Description
; ------- -----------
; <0=> Disable ISP entry on power-up
; <1=> Enable ISP entry on power-up
; <i> enables In-System Programming (ISP) power-up
BOOTSTAT EQU 0
;
;
; BOOTVECTOR (BOOTVEC)
; --------------------
; <o> ISP entry point <0x0-0x1F00:0x100> <# /0x100>
; <i> points to ISP entry point (default c:0x1E00 on unprogrammed part)
BOOTVEC EQU 0x3F ;
; </h>
;
; <h> Flash Security Configuration
; <h> SECO: (SEC0.0 .. SEC0.2)
; SEC0 Val Description
; -------- -----------
; <q.0> Disable reading with MOVC
; <q.1> Disable program/erase
; <q.2> Disable IAP/ISP global erase
; <i> Flash Security Configuration sector 0 (c:0x0000 - c:0x03FF)
SEC0 EQU 0
; </h>
; <h> SEC1: (SEC1.0 .. SEC1.2)
; SEC1 Bit Description
; -------- -----------
; <q.0> Disable reading with MOVC
; <q.1> Disable program/erase
; <q.2> Disable IAP/ISP global erase
; <i> Flash Security Configuration sector 0 (c:0x0400 - c:0x07FF)
SEC1 EQU 0
; </h>
; <h> SEC2: (SEC2.0 .. SEC2.2)
; SEC2 Bit Description
; -------- -----------
; <q.0> Disable reading with MOVC
; <q.1> Disable program/erase
; <q.2> Disable IAP/ISP global erase
; <i> Flash Security Configuration sector 0 (c:0x0800 - c:0x0BFF)
SEC2 EQU 0
; </h>
; <h> SEC3: (SEC3.0 .. SEC3.2)
; SEC3 Bit Description
; -------- -----------
; <q.0> Disable reading with MOVC
; <q.1> Disable program/erase
; <q.2> Disable IAP/ISP global erase
; <i> Flash Security Configuration sector 0 (c:0x0C00 - c:0x0FFF)
SEC3 EQU 0
; </h>
; <h> SEC4: (SEC4.0 .. SEC4.2)
; SEC4 Bit Description
; -------- -----------
; <q.0> Disable reading with MOVC
; <q.1> Disable program/erase
; <q.2> Disable IAP/ISP global erase
; <i> Flash Security Configuration sector 0 (c:0x1000 - c:0x13FF)
SEC4 EQU 0
; </h>
; <h> SEC5: (SEC5.0 .. SEC5.2)
; SEC5 Bit Description
; -------- -----------
; <q.0> Disable reading with MOVC
; <q.1> Disable program/erase
; <q.2> Disable IAP/ISP global erase
; <i> Flash Security Configuration sector 0 (c:0x1400 - c:0x17FF)
SEC5 EQU 0
; </h>
; <h> SEC6: (SEC6.0 .. SEC6.2)
; SEC6 Bit Description
; -------- -----------
; <q.0> Disable reading with MOVC
; <q.1> Disable program/erase
; <q.2> Disable IAP/ISP global erase
; <i> Flash Security Configuration sector 0 (c:0x1800 - c:0x1BFF)
SEC6 EQU 0
; </h>
; <h> SEC7: (SEC7.0 .. SEC7.2)
; SEC7 Bit Description
; -------- -----------
; <q.0> Disable reading with MOVC
; <q.1> Disable program/erase
; <q.2> Disable IAP/ISP global erase
; <i> Flash Security Configuration sector 0 (c:0x1C00 - c:0x1FFF)
SEC7 EQU 0
; </h>
; </h>
;------------------------------------------------------------------------------
NAME ?C_STARTUP
_UCFG1 EQU FOSC OR (WDSE SHL 4) OR (BOE SHL 5) OR (RPE SHL 6) OR (WDTE SHL 7)
_UCFG2 EQU 0
CSEG AT 0FFF0H
DB _UCFG1 ; place UCFG Bytes in hex file
DB _UCFG2 ; reserved for future use
DB BOOTVEC
DB BOOTSTAT
CSEG AT 0FFF8H
DB SEC0
DB SEC1
DB SEC2
DB SEC3
DB SEC4
DB SEC5
DB SEC6
DB SEC7
?C_C51STARTUP SEGMENT CODE
?STACK SEGMENT IDATA
RSEG ?STACK
DS 1
EXTRN CODE (?C_START)
PUBLIC ?C_STARTUP
CSEG AT 0
?C_STARTUP: JMP STARTUP1
RSEG ?C_C51STARTUP
STARTUP1:
IF IDATALEN <> 0
MOV R0,#IDATALEN - 1
CLR A
IDATALOOP: MOV @R0,A
DJNZ R0,IDATALOOP
ENDIF
IF XDATALEN <> 0
MOV DPTR,#XDATASTART
MOV R7,#LOW (XDATALEN)
IF (LOW (XDATALEN)) <> 0
MOV R6,#(HIGH (XDATALEN)) +1
ELSE
MOV R6,#HIGH (XDATALEN)
ENDIF
CLR A
XDATALOOP: MOVX @DPTR,A
INC DPTR
DJNZ R7,XDATALOOP
DJNZ R6,XDATALOOP
ENDIF
IF IBPSTACK <> 0
EXTRN DATA (?C_IBP)
MOV ?C_IBP,#LOW IBPSTACKTOP
ENDIF
IF XBPSTACK <> 0
EXTRN DATA (?C_XBP)
MOV ?C_XBP,#HIGH XBPSTACKTOP
MOV ?C_XBP+1,#LOW XBPSTACKTOP
ENDIF
IF PBPSTACK <> 0
EXTRN DATA (?C_PBP)
MOV ?C_PBP,#LOW PBPSTACKTOP
ENDIF
MOV SP,#?STACK-1
JMP ?C_START
END