OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [rtos/] [freertos-6.1.1/] [Demo/] [uIP_Demo_IAR_ARM7/] [resource/] [at91SAM7X256_FLASH.icf] - Blame information for rev 583

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 583 jeremybenn
/*###ICF### Section handled by ICF editor, don't touch! ****/
2
/*-Editor annotation file-*/
3
/* IcfEditorFile="$TOOLKIT_DIR$\config\ide\IcfEditor\a_v1_0.xml" */
4
/*-Specials-*/
5
define symbol __ICFEDIT_intvec_start__ = 0x00100000;
6
/*-Memory Regions-*/
7
define symbol __ICFEDIT_region_ROM_start__ = 0x00100040;
8
define symbol __ICFEDIT_region_ROM_end__   = 0x0013FFFF;
9
define symbol __ICFEDIT_region_RAM_start__  = 0x00200000;
10
define symbol __ICFEDIT_region_RAM_end__    = 0x0020FFFF;
11
/*-Sizes-*/
12
define symbol __ICFEDIT_size_cstack__   = 0x400;
13
define symbol __ICFEDIT_size_svcstack__ = 0x100;
14
define symbol __ICFEDIT_size_irqstack__ = 0x100;
15
define symbol __ICFEDIT_size_fiqstack__ = 0x0;
16
define symbol __ICFEDIT_size_undstack__ = 0x0;
17
define symbol __ICFEDIT_size_abtstack__ = 0x0;
18
define symbol __ICFEDIT_size_heap__     = 0x0;
19
/**** End of ICF editor section. ###ICF###*/
20
 
21
 
22
define memory mem with size = 4G;
23
define region ROM_region = mem:[from __ICFEDIT_region_ROM_start__ to __ICFEDIT_region_ROM_end__];
24
define region RAM_region = mem:[from __ICFEDIT_region_RAM_start__ to __ICFEDIT_region_RAM_end__];
25
 
26
define block CSTACK    with alignment = 8, size = __ICFEDIT_size_cstack__   { };
27
define block SVC_STACK with alignment = 8, size = __ICFEDIT_size_svcstack__ { };
28
define block IRQ_STACK with alignment = 8, size = __ICFEDIT_size_irqstack__ { };
29
define block FIQ_STACK with alignment = 8, size = __ICFEDIT_size_fiqstack__ { };
30
define block UND_STACK with alignment = 8, size = __ICFEDIT_size_undstack__ { };
31
define block ABT_STACK with alignment = 8, size = __ICFEDIT_size_abtstack__ { };
32
define block HEAP      with alignment = 8, size = __ICFEDIT_size_heap__     { };
33
 
34
initialize by copy { readwrite };
35
do not initialize  { section .noinit };
36
 
37
place at address mem:__ICFEDIT_intvec_start__    { readonly section .intvec };
38
 
39
place in ROM_region   { readonly };
40
place in RAM_region   { readwrite,
41
                        block CSTACK, block SVC_STACK, block IRQ_STACK, block FIQ_STACK,
42
                        block UND_STACK, block ABT_STACK, block HEAP };
43
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.