<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Link Error: L1102: Out of allocation space in segment ROM at adress 0x7CC4 in CodeWarrior Development Tools</title>
    <link>https://community.nxp.com/t5/CodeWarrior-Development-Tools/Link-Error-L1102-Out-of-allocation-space-in-segment-ROM-at/m-p/748586#M6583</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In addition, you can find more tips in help&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="pastedImage_1.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/62248iC1F21266970EE4F0/image-size/large?v=v2&amp;amp;px=999" role="button" title="pastedImage_1.png" alt="pastedImage_1.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Have a great day,&lt;BR /&gt;Jennie Zhang&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-----------------------------------------------------------------------------------------------------------------------&lt;BR /&gt;Note: If this post answers your question, please click the Correct Answer button. Thank you!&lt;BR /&gt;-----------------------------------------------------------------------------------------------------------------------&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 21 Jun 2018 08:17:37 GMT</pubDate>
    <dc:creator>ZhangJennie</dc:creator>
    <dc:date>2018-06-21T08:17:37Z</dc:date>
    <item>
      <title>Link Error: L1102: Out of allocation space in segment ROM at adress 0x7CC4</title>
      <link>https://community.nxp.com/t5/CodeWarrior-Development-Tools/Link-Error-L1102-Out-of-allocation-space-in-segment-ROM-at/m-p/748584#M6581</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;从DZ60移植到DZ128提示上述错误，但在DZ60上编译没有问题，尝试加ROM1,ROM2: To use "ROM1,ROM2" as well, pass the option -OnB=b 也没有效果，不太清楚哪里出问题了？&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/* This is a linker parameter file for the mc9s08dz128 */&lt;/P&gt;&lt;P&gt;NAMES END /* CodeWarrior will pass all the needed files to the linker by command line. But here you may add your own files too. */&lt;/P&gt;&lt;P&gt;SEGMENTS /* Here all RAM/ROM areas of the device are listed. Used in PLACEMENT below. */&lt;BR /&gt; Z_RAM = READ_WRITE 0x0080 TO 0x00FF;&lt;BR /&gt; RAM = READ_WRITE 0x0100 TO 0x17FF;&lt;BR /&gt; RAM1 = READ_WRITE 0x1900 TO 0x217F;&lt;BR /&gt; /* unbanked FLASH ROM */&lt;BR /&gt; ROM = READ_ONLY 0x4000 TO 0x7FFF;&amp;nbsp;&lt;BR /&gt; ROM1 = READ_ONLY 0x2180 TO 0x3BFF;&amp;nbsp;&lt;BR /&gt; ROM2 = READ_ONLY 0xC000 TO 0xFF7F;&amp;nbsp;&lt;BR /&gt; EEPROM = READ_ONLY 0x3C00 TO 0x3FFF;&lt;BR /&gt; /* INTVECTS = READ_ONLY 0xFF80 TO 0xFFFF; Reserved for Interrupt Vectors */&lt;BR /&gt; /* banked FLASH ROM */&lt;BR /&gt; PPAGE_0 = READ_ONLY 0x008000 TO 0x00A17F; /* PAGE partially contained in ROM segment */&lt;BR /&gt; PPAGE_0_1 = READ_ONLY 0x00BC00 TO 0x00BFFF;&lt;BR /&gt; PPAGE_2 = READ_ONLY 0x028000 TO 0x02BFFF;&lt;BR /&gt; PPAGE_4 = READ_ONLY 0x048000 TO 0x04BFFF;&lt;BR /&gt; PPAGE_5 = READ_ONLY 0x058000 TO 0x05BFFF;&lt;BR /&gt; PPAGE_6 = READ_ONLY 0x068000 TO 0x06BFFF;&lt;BR /&gt; PPAGE_7 = READ_ONLY 0x078000 TO 0x07BFFF;&lt;BR /&gt; /* PPAGE_1 = READ_ONLY 0x018000 TO 0x01BFFF; PAGE already contained in segment at 0x4000-0x7FFF */&lt;BR /&gt; /* PPAGE_3 = READ_ONLY 0x038000 TO 0x03BFFF; PAGE already contained in segment at 0xC000-0xFFFF */&lt;BR /&gt;END&lt;/P&gt;&lt;P&gt;PLACEMENT /* Here all predefined and user segments are placed into the SEGMENTS defined above. */&lt;BR /&gt; DEFAULT_RAM, /* non-zero page variables */&lt;BR /&gt; INTO RAM,RAM1;&lt;/P&gt;&lt;P&gt;_PRESTART, /* startup code */&lt;BR /&gt; STARTUP, /* startup data structures */&lt;BR /&gt; ROM_VAR, /* constant variables */&lt;BR /&gt; STRINGS, /* string literals */&lt;BR /&gt; VIRTUAL_TABLE_SEGMENT, /* C++ virtual table segment */&lt;BR /&gt; NON_BANKED, /* runtime routines which must not be banked */&lt;BR /&gt; DEFAULT_ROM,&lt;BR /&gt; COPY /* copy down information: how to initialize variables */&lt;BR /&gt; INTO ROM; /* ,ROM1,ROM2: To use "ROM1,ROM2" as well, pass the option -OnB=b to the compiler */&lt;/P&gt;&lt;P&gt;PAGED_ROM /* routines which can be banked */&lt;BR /&gt; INTO PPAGE_0,PPAGE_0_1,PPAGE_2,PPAGE_4,PPAGE_5,PPAGE_6,PPAGE_7,ROM1,ROM2;&lt;/P&gt;&lt;P&gt;_DATA_ZEROPAGE, /* zero page variables */&lt;BR /&gt; MY_ZEROPAGE INTO Z_RAM;&lt;BR /&gt;END&lt;/P&gt;&lt;P&gt;STACKSIZE 0x400&lt;/P&gt;&lt;P&gt;//VECTOR 0 _Startup /* Reset vector: this is the default entry point for an application. */&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Jun 2018 06:46:11 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-Development-Tools/Link-Error-L1102-Out-of-allocation-space-in-segment-ROM-at/m-p/748584#M6581</guid>
      <dc:creator>taolee</dc:creator>
      <dc:date>2018-06-04T06:46:11Z</dc:date>
    </item>
    <item>
      <title>Re: Link Error: L1102: Out of allocation space in segment ROM at adress 0x7CC4</title>
      <link>https://community.nxp.com/t5/CodeWarrior-Development-Tools/Link-Error-L1102-Out-of-allocation-space-in-segment-ROM-at/m-p/748585#M6582</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;The error means ROM section is not big enough to load code. normally add other ROM1,ROM2 with -OnB=b enabled can solve the problem, But you say not.&lt;/P&gt;&lt;P&gt;Thus please send me your demo project, I will check it directly from my side.&lt;/P&gt;&lt;P&gt;If you don't like to share project to public, create a private case, I can also test it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards&lt;/P&gt;&lt;P&gt;Jennie Zhang&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jun 2018 02:24:13 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-Development-Tools/Link-Error-L1102-Out-of-allocation-space-in-segment-ROM-at/m-p/748585#M6582</guid>
      <dc:creator>ZhangJennie</dc:creator>
      <dc:date>2018-06-05T02:24:13Z</dc:date>
    </item>
    <item>
      <title>Re: Link Error: L1102: Out of allocation space in segment ROM at adress 0x7CC4</title>
      <link>https://community.nxp.com/t5/CodeWarrior-Development-Tools/Link-Error-L1102-Out-of-allocation-space-in-segment-ROM-at/m-p/748586#M6583</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In addition, you can find more tips in help&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="pastedImage_1.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/62248iC1F21266970EE4F0/image-size/large?v=v2&amp;amp;px=999" role="button" title="pastedImage_1.png" alt="pastedImage_1.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Have a great day,&lt;BR /&gt;Jennie Zhang&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-----------------------------------------------------------------------------------------------------------------------&lt;BR /&gt;Note: If this post answers your question, please click the Correct Answer button. Thank you!&lt;BR /&gt;-----------------------------------------------------------------------------------------------------------------------&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Jun 2018 08:17:37 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-Development-Tools/Link-Error-L1102-Out-of-allocation-space-in-segment-ROM-at/m-p/748586#M6583</guid>
      <dc:creator>ZhangJennie</dc:creator>
      <dc:date>2018-06-21T08:17:37Z</dc:date>
    </item>
  </channel>
</rss>

