2012-03-21 61 views
1

當加載一個可執行文件到OpenOCD的使用和GDB的董事會,我得到類似(段從here採取)的東西:lma是什麼意思?

$ arm-none-eabi-gdb example.elf 
(gdb) target remote localhost:3333 
Remote debugging using localhost:3333 
... 
(gdb) monitor reset halt 
... 
(gdb) load 
Loading section .vectors, size 0x100 lma 0x20000000 
Loading section .text, size 0x5a0 lma 0x20000100 
Loading section .data, size 0x18 lma 0x200006a0 
Start address 0x2000061c, load size 1720 
Transfer rate: 22 KB/sec, 573 bytes/write. 
(gdb) continue 
Continuing. 
... 

是什麼意思lma在這種情況下?

回答