我想通过 STR 指令更改内存中的一些位。
.text
.equ ram_address,0x4000
.equ pattern,0x55
.equ counter,50
mov r0,#pattern
mov r1,#counter
mov r2,#ram_address
back: str r0,[r2]
add r2,#4
subs r1,r1,#1
bne back
here: b here
.data
i: .word 0xffffffff
并使用这样的makefile:
TOOLCHAIN=arm-none-eabi
Assembler=${TOOLCHAIN}-as
Linker=${TOOLCHAIN}-ld
Objcpy=${TOOLCHAIN}-objcopy
Compile_Options= -g
Link_Options=-Ttext=0x0 -Tbss=0x4000 # -Tdata=0x4000 #
.PHONY : clean
.PRECIOUS : %.bin %.elf %.o
all : create
create : flash.bin
flash.bin:main.bin
dd if=/dev/zero of=flash.bin bs=4096 count=4096
dd if=main.bin of=flash.bin bs=4096 conv=notrunc
%.bin:%.elf
$(Objcpy) -O binary $< $@
%.elf:%.o
$(Linker) $(Link_Options) -o $@ $<
%.o:%.S
$(Assembler) $(Compile_Options) $< -o $@
clean :
rm -f *.o *.bin *.elf
这是 qemu 命令:
qemu-system-arm -S -M connex -pflash flash.bin -nographic -serial /dev/null
QEMU 模拟器版本 6.1.0
x/16xw 0x4000
我通过 qemu-arm-system 和 gdbserver 和命令检查内存。结果是:
0xffffffff 0x00000000 0x00000000 0x00000000
这意味着 .data 部分是只读的。我怎么能设置它可写?