Как объявить массив констант во флэш-памяти, используя только сборку, а не C?
Вопрос говорит сам за себя, я считаю.Помимо самого кода ассемблера, я хочу получить доступ к этому константному массиву значений и выполнить итерацию.
Я использую Code Composer Studio, MSP432.
Для сравнения, я знаю, какчтобы получить доступ к оперативной памяти, потому что я знаю, где эти адреса существуют, и мой код может делать с ними что угодно.Таким образом, я могу сделать что-то вроде этого:
;declare 1st RAM address:
FIRST .field 0x20000000,32
;use it:
LDR R1,FIRST
LDRB R0,[R1]
;etc.
Или, если я обращаюсь к GPIO, я знаю конкретный адрес (а) ввода:
;declare:
PORT1INPUT .field 0x4000C000,32
;use:
LDR R1,PORT1INPUT
LDRB R0,[R1]
Но я хочу значения изflash, непрерывный, с известных адресов, как указано выше.
ОБНОВЛЕНИЕ:
.thumb
.text
.align 2
;my issue or question is about this section (I think)
;don't know how or what to put here
;to declare a continguous block of
;addresses in flash, containing
;specific values
;i dont want to load just the values,
;i need to know how to start at a certain
;address
; i.e. i want to mimic an array,
; but in flash.
;i know how to initialize and mimic an
;array in RAM.
.global main
.thumbfunc main
main: .asmfunc
mainloop
;code here that starts at
;first address in flash
;containing first value
;and reads it into a register
;
;the code isn't the problem.
;i know how to do this part.
B mainloop
.endasmfunc
.end
БОЛЬШЕ ОБНОВЛЕНИЯ Я создаю простой C-проект в Code Composer для MSP432.в main () у меня есть:
#include "msp.h"
static const int somearr[] = { 1,2,3,4,5,6,7};
void main(void) {
int i = somearr[0];//needed so compiler would not ignore declaration
}
Когда я отлаживаю его, получается именно так, как я хотел - ряд констант во flash, в данном случае расположенный после кода «main ()», начинаяпо флэш-адресу 0x000005D0
.И данные, хранящиеся в каждом последующем местоположении, являются указанными значениями типа int.
Но я хочу сделать это при прямой сборке, а не C.
Вывод сборки (будет отображаться инструментцепь я представляю) это:
**** Build of configuration Debug for project 00.static.global.const.array.of.ints ****
/opt/ti/ccsv8/utils/bin/gmake -k -j 2 all -O
Building file: "../main.c"
Invoking: ARM Compiler
"/opt/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.2.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me --include_path="/opt/ti/ccsv8/ccs_base/arm/include" --include_path="/opt/ti/ccsv8/ccs_base/arm/include/CMSIS" --include_path="/home/devchu/Development/ti.robotics/tirslk_maze_1_00_00/00.static.global.const.array.of.ints" --include_path="/opt/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.2.LTS/include" --advice:power=all --define=__MSP432P401R__ --define=ccs -g --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi --preproc_with_compile --preproc_dependency="main.d_raw" "../main.c"
"../main.c", line 3: warning #179-D: variable "somearr" was declared but never referenced
Finished building: "../main.c"
Building target: "00.static.global.const.array.of.ints.out"
Invoking: ARM Linker
"/opt/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.2.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me --advice:power=all --define=__MSP432P401R__ --define=ccs -g --gcc --diag_warning=225 --diag_wrap=off --display_error_number --abi=eabi -z -m"00.static.global.const.array.of.ints.map" --heap_size=1024 --stack_size=512 -i"/opt/ti/ccsv8/ccs_base/arm/include" -i"/opt/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.2.LTS/lib" -i"/opt/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.2.LTS/include" --reread_libs --diag_wrap=off --display_error_number --warn_sections --xml_link_info="00.static.global.const.array.of.ints_linkInfo.xml" --rom_model -o "00.static.global.const.array.of.ints.out" "./main.obj" "./startup_msp432p401r_ccs.obj" "./system_msp432p401r.obj" "../msp432p401r.cmd" -llibc.a
<Linking>
remark #10371-D: (ULP 1.1) Detected no uses of low power mode state changing instructions
remark #10372-D: (ULP 4.1) Detected uninitialized Port 1 in this project. Recommend initializing all unused ports to eliminate wasted current consumption on unused pins.
remark #10372-D: (ULP 4.1) Detected uninitialized Port 2 in this project. Recommend initializing all unused ports to eliminate wasted current consumption on unused pins.
remark #10372-D: (ULP 4.1) Detected uninitialized Port 3 in this project. Recommend initializing all unused ports to eliminate wasted current consumption on unused pins.
remark #10372-D: (ULP 4.1) Detected uninitialized Port 4 in this project. Recommend initializing all unused ports to eliminate wasted current consumption on unused pins.
remark #10372-D: (ULP 4.1) Detected uninitialized Port 5 in this project. Recommend initializing all unused ports to eliminate wasted current consumption on unused pins.
remark #10372-D: (ULP 4.1) Detected uninitialized Port 6 in this project. Recommend initializing all unused ports to eliminate wasted current consumption on unused pins.
remark #10372-D: (ULP 4.1) Detected uninitialized Port 7 in this project. Recommend initializing all unused ports to eliminate wasted current consumption on unused pins.
remark #10372-D: (ULP 4.1) Detected uninitialized Port 8 in this project. Recommend initializing all unused ports to eliminate wasted current consumption on unused pins.
remark #10372-D: (ULP 4.1) Detected uninitialized Port 9 in this project. Recommend initializing all unused ports to eliminate wasted current consumption on unused pins.
remark #10372-D: (ULP 4.1) Detected uninitialized Port 10 in this project. Recommend initializing all unused ports to eliminate wasted current consumption on unused pins.
Finished building target: "00.static.global.const.array.of.ints.out"
Building files: "00.static.global.const.array.of.ints.out"
Invoking: ARM Hex Utility
"/opt/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.2.LTS/bin/armhex" --memwidth=8 --romwidth=8 -o "00.static.global.const.array.of.ints.hex" "00.static.global.const.array.of.ints.out"
Translating to Extended Tektronix format...
"00.static.global.const.array.of.ints.out" .intvecs ==> .intvecs
"00.static.global.const.array.of.ints.out" .text ==> .text
"00.static.global.const.array.of.ints.out" .cinit ==> .cinit
Finished building: "00.static.global.const.array.of.ints.out"
**** Build Finished ****