hnyfc 发表于 2010-10-8 12:24:07

IAR EWARM 5.41 生成的HEX文件在Proteus 仿真中无反应

请教各位高人

IAR EWARM 5.41 生成的HEX文件在Proteus 仿真中无反应

该如何解决 谢谢

hnyfc 发表于 2010-10-10 21:19:07

终于找到问题了是ICF文件没设置好

/*###ICF### Section handled by ICF editor, don't touch! ****/
/*-Editor annotation file-*/
/* IcfEditorFile="$TOOLKIT_DIR$\config\ide\IcfEditor\a_v1_0.xml" */
/*-Specials-*/
define symbol __ICFEDIT_intvec_start__ = 0x00000000;
/*-Memory Regions-*/
define symbol __ICFEDIT_region_ROM_start__ = 0x00000200;
define symbol __ICFEDIT_region_ROM_end__   = 0x00003FFF;
define symbol __ICFEDIT_region_RAM_start__ = 0x40002000;
define symbol __ICFEDIT_region_RAM_end__   = 0x40003FFF;
/*-Sizes-*/
define symbol __ICFEDIT_size_cstack__   = 0x800;
define symbol __ICFEDIT_size_svcstack__ = 0x10;
define symbol __ICFEDIT_size_irqstack__ = 0x100;
define symbol __ICFEDIT_size_fiqstack__ = 0x0;
define symbol __ICFEDIT_size_undstack__ = 0x0;
define symbol __ICFEDIT_size_abtstack__ = 0x0;
define symbol __ICFEDIT_size_heap__   = 0x400;
/**** End of ICF editor section. ###ICF###*/


define memory mem with size = 4G;
define region ROM_region   = mem:;
define region RAM_region   = mem:;

define block CSTACK    with alignment = 8, size = __ICFEDIT_size_cstack__   { };
define block SVC_STACK with alignment = 8, size = __ICFEDIT_size_svcstack__ { };
define block IRQ_STACK with alignment = 8, size = __ICFEDIT_size_irqstack__ { };
define block FIQ_STACK with alignment = 8, size = __ICFEDIT_size_fiqstack__ { };
define block UND_STACK with alignment = 8, size = __ICFEDIT_size_undstack__ { };
define block ABT_STACK with alignment = 8, size = __ICFEDIT_size_abtstack__ { };
define block HEAP      with alignment = 8, size = __ICFEDIT_size_heap__   { };

initialize by copy { readwrite };
do not initialize{ section .noinit };

place at address mem:__ICFEDIT_intvec_start__ { readonly section .intvec };

place in ROM_region   { readonly };
place in RAM_region   { readwrite,
                        block CSTACK, block SVC_STACK, block IRQ_STACK, block FIQ_STACK,
                        block UND_STACK, block ABT_STACK, block HEAP };

ppxia 发表于 2010-10-20 19:01:24

不错!我再用!!

wuliehui 发表于 2011-12-29 21:33:01

回复【楼主位】hnyfc
-----------------------------------------------------------------------

怎么生成HEX文件啊,在哪里设置。困扰我好几天了。

dorfmeister 发表于 2011-12-29 22:24:39

配置问题吧
页: [1]
查看完整版本: IAR EWARM 5.41 生成的HEX文件在Proteus 仿真中无反应