大家知不知道map文件格式,有没有比较具体的相关文章,谢谢啦!
共4条
1/1 1 跳转至页
borland .map file format
| the map file is simply a list of the segments contained in the compiled program together with information about the segment type and where it appears in the compiled code. here is an example of a .map file for a tasm prog i wrote: start stop length name class 00000h 00000h 00000h _text code 00000h 00356h 00357h _codeseg code 00358h 00358h 00000h _data data 00360h 00ee9h 00b8ah _varseg data 00ef0h 108efh 0fa00h _scrnseg scrn 108f0h 1092fh 00040h _stackseg stack program entry point at 0000:02c7 warning: no stack first it displays headings for each column (start, stop, length, name, and class).. then it lists all the segments in the order they appear in the executable... the start is how far into the code (in hex) that the segment starts at, stop is how far into the code the segment ends.. and the length is stop - start. under name is just the name of the segment that the programmer gave it when programming it.. (default segs are _text and _data if you just use .code and .data to start your segs) and class is the alias that you give the seg.. for example.. if you declare the seg like the following in your program: _scrnseg segment public 'scrn' _scrnseg ends the name will be _scrnseg and the class will be scrn. the program entry point is the state of cs:ip upon entry to the program (cs will be offset however depending on where in memory the program is loaded).. after that it lists any warnings or errors in the program.. in this case it gave a no stack warning because i manually declared a stack seg rather than using the conventional .stack <size> directive. |
共4条
1/1 1 跳转至页
回复
| 有奖活动 | |
|---|---|
| 这个春节你犒赏自己什么了?分享你的故事,有奖征集 | |
| 2026年“我要开发板活动”第三季,开始了! | |
| 硬核工程师专属补给计划——填盲盒 | |
| “我踩过的那些坑”主题活动——第002期 | |
| 【EEPW电子工程师创研计划】技术变现通道已开启~ | |
| 发原创文章 【每月瓜分千元赏金 凭实力攒钱买好礼~】 | |
| 【EEPW在线】E起听工程师的声音! | |
| 高校联络员开始招募啦!有惊喜!! | |
我要赚赏金打赏帖 |
|
|---|---|
| 【S32K3XX】Standby RAM的初始化流程被打赏¥18元 | |
| Gravity:中英文语音合成模块V2.0及其串口控制被打赏¥24元 | |
| 全彩色度变化图的绘制被打赏¥27元 | |
| 【FreeRtos】FreeRtos任务栈的生长方向管理方式被打赏¥20元 | |
| 【瑞萨RA8D1 LVGL/LWIP评测】LVGL添加输入设备:EC11旋转编码器被打赏¥39元 | |
| 【瑞萨RA8D1 LVGL/LWIP评测】RA8D1部署FreeRTOS+LVGL被打赏¥33元 | |
| 空气质量检测器设计与实现被打赏¥24元 | |
| 【瑞萨RA8D1 LVGL/LWIP评测】LWIP进行UDP、TCP、HTTP、MQTT功能联合测试被打赏¥41元 | |
| 【瑞萨RA8D1 LVGL/LWIP评测】RA8D1部署FreeRTOS+LWIP被打赏¥36元 | |
| RTOS怎么选?让我来给你答案!被打赏¥15元 | |
我要赚赏金
