Understanding Delphi MAP File

后端 未结 3 1621
囚心锁ツ
囚心锁ツ 2021-02-07 23:19

Here is the sample of MAP file from my test project...

.......
 .......
 .......
 0001:001EFC14 00000020 C=CODE     S=.text    G=(none)   M=Vcl.CategoryButtons A         


        
3条回答
  •  一整个雨季
    2021-02-07 23:28

    It mean that your asm code of your unit MainU start at $00232C28 address and the length of compiled unit is $00006998 bytes.

    The segment class (C=) is CODE, defined at beginning of map file.

    The segment name (S=) is .text

    The segment group (G=) is none.

    The segment module (M=) is MainU

    The ACBP attribute = A9 mean:

    • Unnamed absolute portion of memory address space
    • A public combining
    • The segment may be larger than 64K

    Check also: http://files.mpoli.fi/unpacked/software/programm/general/ss0288.zip/ss0288_4.txt

提交回复
热议问题