395 lines
11 KiB
Text
395 lines
11 KiB
Text
|
||
|
||
|
||
ARM Macro Assembler Page 1
|
||
|
||
|
||
1 00000000 ;*******************************************************
|
||
********************
|
||
2 00000000 THUMB
|
||
3 00000000 REQUIRE8
|
||
4 00000000 PRESERVE8
|
||
5 00000000
|
||
6 00000000 ;*******************************************************
|
||
*******************
|
||
7 00000000 ; Fichier Vierge.asm
|
||
8 00000000 ; Auteur : V.MAHOUT
|
||
9 00000000 ; Date : 12/11/2013
|
||
10 00000000 ;*******************************************************
|
||
*******************
|
||
11 00000000
|
||
12 00000000 ;***************IMPORT/EXPORT***************************
|
||
*******************
|
||
13 00000000
|
||
14 00000000
|
||
15 00000000
|
||
16 00000000 ;*******************************************************
|
||
*******************
|
||
17 00000000
|
||
18 00000000
|
||
19 00000000
|
||
20 00000000 ;***************CONSTANTES******************************
|
||
*******************
|
||
21 00000000
|
||
22 00000000 include REG_UTILES.inc
|
||
1 00000000
|
||
2 00000000 ;**************************************
|
||
3 00000000 ; Les adresess utiles
|
||
4 00000000 ;***************************************
|
||
5 00000000
|
||
6 00000000
|
||
7 00000000 ;**************************************
|
||
8 00000000 ; Affectation des bits GPIO
|
||
9 00000000 ;***************************************
|
||
10 00000000 ; GSLCK..... PA0
|
||
11 00000000 ; DSPRG..... PA1
|
||
12 00000000 ; BLANK..... PA2
|
||
13 00000000 ; XLAT...... PA3
|
||
14 00000000 ; VPRG...... PA4
|
||
15 00000000 ; SCLK...... PA5
|
||
16 00000000 ; SIN1...... PA7
|
||
17 00000000 ;Capteur.....PA8
|
||
18 00000000
|
||
19 00000000 ;LED.........PB10
|
||
20 00000000 ;****************************************/
|
||
21 00000000
|
||
22 00000000
|
||
23 00000000
|
||
24 00000000 40010800
|
||
GPIOBASEA
|
||
EQU 0X40010800
|
||
25 00000000 40010C00
|
||
GPIOBASEB
|
||
EQU 0X40010C00
|
||
26 00000000
|
||
27 00000000 00000008
|
||
|
||
|
||
|
||
ARM Macro Assembler Page 2
|
||
|
||
|
||
OffsetInput
|
||
EQU 0x08
|
||
28 00000000 0000000C
|
||
OffsetOutput
|
||
EQU 0x0C
|
||
29 00000000 00000010
|
||
OffsetSet
|
||
EQU 0x10
|
||
30 00000000 00000014
|
||
OffsetReset
|
||
EQU 0x14
|
||
31 00000000
|
||
32 00000000
|
||
33 00000000 00000080
|
||
MaskSerial_In1
|
||
equ 0x80
|
||
34 00000000 00000080
|
||
MaskSerial_Dots
|
||
equ 0x80
|
||
35 00000000 00000010
|
||
MaskVprg
|
||
equ 0x10
|
||
36 00000000 00000008
|
||
MaskXlat
|
||
equ 0x08
|
||
37 00000000 00000004
|
||
MaskBlank
|
||
equ 0x04
|
||
38 00000000 00000020
|
||
MaskSclk
|
||
equ 0x20
|
||
39 00000000 00000002
|
||
MaskDsprg
|
||
equ 0x02
|
||
40 00000000 00000001
|
||
MaskGsclk
|
||
equ 0x01
|
||
41 00000000
|
||
42 00000000
|
||
43 00000000 E000ED08
|
||
SCB_VTOR
|
||
EQU 0xE000ED08
|
||
44 00000000 40012C10
|
||
TIM1_SR EQU 0x40012c10
|
||
45 00000000 40012C24
|
||
TIM1_CNT
|
||
EQU 0x40012c24
|
||
46 00000000 4000082C
|
||
TIM4_ARR
|
||
EQU 0x4000082C
|
||
47 00000000 40000810
|
||
TIM4_SR EQU 0x40000810
|
||
48 00000000
|
||
49 00000000
|
||
50 00000000
|
||
51 00000000
|
||
52 00000000
|
||
53 00000000 END
|
||
23 00000000
|
||
|
||
|
||
|
||
ARM Macro Assembler Page 3
|
||
|
||
|
||
24 00000000 ;*******************************************************
|
||
*******************
|
||
25 00000000
|
||
26 00000000
|
||
27 00000000 ;***************VARIABLES*******************************
|
||
*******************
|
||
28 00000000 AREA MesDonnees, data, readwrite
|
||
29 00000000 ;*******************************************************
|
||
*******************
|
||
30 00000000
|
||
31 00000000
|
||
32 00000000
|
||
33 00000000 ;*******************************************************
|
||
*******************
|
||
34 00000000
|
||
35 00000000
|
||
36 00000000
|
||
37 00000000 ;***************CODE************************************
|
||
*******************
|
||
38 00000000 AREA moncode, code, readonly
|
||
39 00000000 ;*******************************************************
|
||
*******************
|
||
40 00000000
|
||
41 00000000
|
||
42 00000000
|
||
43 00000000
|
||
44 00000000
|
||
45 00000000 ;#######################################################
|
||
#################
|
||
46 00000000 ; Proc<6F>dure ????
|
||
47 00000000 ;#######################################################
|
||
#################
|
||
48 00000000 ;
|
||
49 00000000 ; Param<61>tre entrant : ???
|
||
50 00000000 ; Param<61>tre sortant : ???
|
||
51 00000000 ; Variables globales : ???
|
||
52 00000000 ; Registres modifi<66>s : ???
|
||
53 00000000 ;-------------------------------------------------------
|
||
-----------------
|
||
54 00000000
|
||
55 00000000
|
||
56 00000000
|
||
57 00000000
|
||
58 00000000
|
||
59 00000000
|
||
60 00000000
|
||
61 00000000 ;*******************************************************
|
||
*******************
|
||
62 00000000 END
|
||
Command Line: --debug --xref --diag_suppress=9931 --cpu=Cortex-M3 --apcs=interw
|
||
ork --depend=.\objects\fonctionetape.d -o.\objects\fonctionetape.o -I.\RTE\Devi
|
||
ce\STM32F107VC -I.\RTE\_R_el -IC:\Programdata\Keil\Arm\Packs\ARM\CMSIS\5.7.0\CM
|
||
SIS\Core\Include -IC:\Programdata\Keil\Arm\Packs\Keil\STM32F1xx_DFP\2.3.0\Devic
|
||
e\Include --predefine="__EVAL SETA 1" --predefine="__MICROLIB SETA 1" --predefi
|
||
ne="__UVISION_VERSION SETA 534" --predefine="_RTE_ SETA 1" --predefine="STM32F1
|
||
0X_CL SETA 1" --predefine="_RTE_ SETA 1" --predefine="STM32F10X_CL SETA 1" --li
|
||
st=.\listings\fonctionetape.lst FonctionEtape.asm
|
||
|
||
|
||
|
||
ARM Macro Assembler Page 1 Alphabetic symbol ordering
|
||
Relocatable symbols
|
||
|
||
MesDonnees 00000000
|
||
|
||
Symbol: MesDonnees
|
||
Definitions
|
||
At line 28 in file FonctionEtape.asm
|
||
Uses
|
||
None
|
||
Comment: MesDonnees unused
|
||
1 symbol
|
||
|
||
|
||
|
||
ARM Macro Assembler Page 1 Alphabetic symbol ordering
|
||
Relocatable symbols
|
||
|
||
moncode 00000000
|
||
|
||
Symbol: moncode
|
||
Definitions
|
||
At line 38 in file FonctionEtape.asm
|
||
Uses
|
||
None
|
||
Comment: moncode unused
|
||
1 symbol
|
||
|
||
|
||
|
||
ARM Macro Assembler Page 1 Alphabetic symbol ordering
|
||
Absolute symbols
|
||
|
||
GPIOBASEA 40010800
|
||
|
||
Symbol: GPIOBASEA
|
||
Definitions
|
||
At line 24 in file REG_UTILES.inc
|
||
Uses
|
||
None
|
||
Comment: GPIOBASEA unused
|
||
GPIOBASEB 40010C00
|
||
|
||
Symbol: GPIOBASEB
|
||
Definitions
|
||
At line 25 in file REG_UTILES.inc
|
||
Uses
|
||
None
|
||
Comment: GPIOBASEB unused
|
||
MaskBlank 00000004
|
||
|
||
Symbol: MaskBlank
|
||
Definitions
|
||
At line 37 in file REG_UTILES.inc
|
||
Uses
|
||
None
|
||
Comment: MaskBlank unused
|
||
MaskDsprg 00000002
|
||
|
||
Symbol: MaskDsprg
|
||
Definitions
|
||
At line 39 in file REG_UTILES.inc
|
||
Uses
|
||
None
|
||
Comment: MaskDsprg unused
|
||
MaskGsclk 00000001
|
||
|
||
Symbol: MaskGsclk
|
||
Definitions
|
||
At line 40 in file REG_UTILES.inc
|
||
Uses
|
||
None
|
||
Comment: MaskGsclk unused
|
||
MaskSclk 00000020
|
||
|
||
Symbol: MaskSclk
|
||
Definitions
|
||
At line 38 in file REG_UTILES.inc
|
||
Uses
|
||
None
|
||
Comment: MaskSclk unused
|
||
MaskSerial_Dots 00000080
|
||
|
||
Symbol: MaskSerial_Dots
|
||
Definitions
|
||
At line 34 in file REG_UTILES.inc
|
||
Uses
|
||
None
|
||
Comment: MaskSerial_Dots unused
|
||
MaskSerial_In1 00000080
|
||
|
||
Symbol: MaskSerial_In1
|
||
|
||
|
||
|
||
ARM Macro Assembler Page 2 Alphabetic symbol ordering
|
||
Absolute symbols
|
||
|
||
Definitions
|
||
At line 33 in file REG_UTILES.inc
|
||
Uses
|
||
None
|
||
Comment: MaskSerial_In1 unused
|
||
MaskVprg 00000010
|
||
|
||
Symbol: MaskVprg
|
||
Definitions
|
||
At line 35 in file REG_UTILES.inc
|
||
Uses
|
||
None
|
||
Comment: MaskVprg unused
|
||
MaskXlat 00000008
|
||
|
||
Symbol: MaskXlat
|
||
Definitions
|
||
At line 36 in file REG_UTILES.inc
|
||
Uses
|
||
None
|
||
Comment: MaskXlat unused
|
||
OffsetInput 00000008
|
||
|
||
Symbol: OffsetInput
|
||
Definitions
|
||
At line 27 in file REG_UTILES.inc
|
||
Uses
|
||
None
|
||
Comment: OffsetInput unused
|
||
OffsetOutput 0000000C
|
||
|
||
Symbol: OffsetOutput
|
||
Definitions
|
||
At line 28 in file REG_UTILES.inc
|
||
Uses
|
||
None
|
||
Comment: OffsetOutput unused
|
||
OffsetReset 00000014
|
||
|
||
Symbol: OffsetReset
|
||
Definitions
|
||
At line 30 in file REG_UTILES.inc
|
||
Uses
|
||
None
|
||
Comment: OffsetReset unused
|
||
OffsetSet 00000010
|
||
|
||
Symbol: OffsetSet
|
||
Definitions
|
||
At line 29 in file REG_UTILES.inc
|
||
Uses
|
||
None
|
||
Comment: OffsetSet unused
|
||
SCB_VTOR E000ED08
|
||
|
||
Symbol: SCB_VTOR
|
||
Definitions
|
||
At line 43 in file REG_UTILES.inc
|
||
Uses
|
||
|
||
|
||
|
||
ARM Macro Assembler Page 3 Alphabetic symbol ordering
|
||
Absolute symbols
|
||
|
||
None
|
||
Comment: SCB_VTOR unused
|
||
TIM1_CNT 40012C24
|
||
|
||
Symbol: TIM1_CNT
|
||
Definitions
|
||
At line 45 in file REG_UTILES.inc
|
||
Uses
|
||
None
|
||
Comment: TIM1_CNT unused
|
||
TIM1_SR 40012C10
|
||
|
||
Symbol: TIM1_SR
|
||
Definitions
|
||
At line 44 in file REG_UTILES.inc
|
||
Uses
|
||
None
|
||
Comment: TIM1_SR unused
|
||
TIM4_ARR 4000082C
|
||
|
||
Symbol: TIM4_ARR
|
||
Definitions
|
||
At line 46 in file REG_UTILES.inc
|
||
Uses
|
||
None
|
||
Comment: TIM4_ARR unused
|
||
TIM4_SR 40000810
|
||
|
||
Symbol: TIM4_SR
|
||
Definitions
|
||
At line 47 in file REG_UTILES.inc
|
||
Uses
|
||
None
|
||
Comment: TIM4_SR unused
|
||
19 symbols
|
||
356 symbols in table
|