<?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: Is there an example of multiple assembler file absolute assembly? in CodeWarrior Development Tools</title>
    <link>https://community.nxp.com/t5/CodeWarrior-Development-Tools/Is-there-an-example-of-multiple-assembler-file-absolute-assembly/m-p/342015#M1434</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Paul,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Most of the time when the application is loaded with the debugger, the application will run at main function.&lt;/P&gt;&lt;P&gt;To run in standalone mode you should have the reset vector initialized to your entry program.&lt;/P&gt;&lt;P&gt;By default this is managed when the application is created with relocatable assembly project.&lt;/P&gt;&lt;P&gt;In this case your application could contain several assembly files which are linked in a abs file with the linker tool.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you're using Absolute assembly, this means your project contains 1 file only.&lt;/P&gt;&lt;P&gt;This file should define the memory location, stack address, ... etc ...&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Have a great day,&lt;BR /&gt;Pascal&lt;BR /&gt;Freescale Technical Support&lt;BR /&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, 11 Dec 2014 11:53:34 GMT</pubDate>
    <dc:creator>trytohelp</dc:creator>
    <dc:date>2014-12-11T11:53:34Z</dc:date>
    <item>
      <title>Is there an example of multiple assembler file absolute assembly?</title>
      <link>https://community.nxp.com/t5/CodeWarrior-Development-Tools/Is-there-an-example-of-multiple-assembler-file-absolute-assembly/m-p/342014#M1433</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The jump to my code from the main jumps to ram where there is no code. I can see in the O.lst the addresses are in first page ram. I believe I need to set it for absolute location. Works in debug mode but standalone when unplug and reset pressed&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Dec 2014 04:26:29 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-Development-Tools/Is-there-an-example-of-multiple-assembler-file-absolute-assembly/m-p/342014#M1433</guid>
      <dc:creator>giantkiller</dc:creator>
      <dc:date>2014-12-11T04:26:29Z</dc:date>
    </item>
    <item>
      <title>Re: Is there an example of multiple assembler file absolute assembly?</title>
      <link>https://community.nxp.com/t5/CodeWarrior-Development-Tools/Is-there-an-example-of-multiple-assembler-file-absolute-assembly/m-p/342015#M1434</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Paul,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Most of the time when the application is loaded with the debugger, the application will run at main function.&lt;/P&gt;&lt;P&gt;To run in standalone mode you should have the reset vector initialized to your entry program.&lt;/P&gt;&lt;P&gt;By default this is managed when the application is created with relocatable assembly project.&lt;/P&gt;&lt;P&gt;In this case your application could contain several assembly files which are linked in a abs file with the linker tool.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you're using Absolute assembly, this means your project contains 1 file only.&lt;/P&gt;&lt;P&gt;This file should define the memory location, stack address, ... etc ...&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Have a great day,&lt;BR /&gt;Pascal&lt;BR /&gt;Freescale Technical Support&lt;BR /&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, 11 Dec 2014 11:53:34 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-Development-Tools/Is-there-an-example-of-multiple-assembler-file-absolute-assembly/m-p/342015#M1434</guid>
      <dc:creator>trytohelp</dc:creator>
      <dc:date>2014-12-11T11:53:34Z</dc:date>
    </item>
    <item>
      <title>Re: Is there an example of multiple assembler file absolute assembly?</title>
      <link>https://community.nxp.com/t5/CodeWarrior-Development-Tools/Is-there-an-example-of-multiple-assembler-file-absolute-assembly/m-p/342016#M1435</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN&gt;I posted below just the keep my thought process docoed.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I added a SECTION command at the start of my code in the second file. This worked. The concept of modularity using commands is something I have not done before. I am just used to one straight asm file code. I don't need the modularity as of yet but the learning curve is new.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thank you for the help. If you have any remarks to further me along this path it would greatly appreciated.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I truck on now to the finish...&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;**********************************************&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I understand what you are saying. Overnight I thought more about a better question. I have a main file and then my test.asm file. I have XDEF the START routine so main does call the START in the test.asm. The problem is the address resolution puts the test code at address $B7 in ram but the code really doesnt sit there. The reference to absolute was to hook the test code directly after the main code so It would create a single code file in rom. I hope this helps. M test.asm runs great in debugger. I am very pleased with the progress I have made with this tool and the DEMO9s08AC60 board. The migration i went through from the MC6805 platform to this one progressed in less than 2 hours of actual work. The analysis of the platform switch took 1 week. To say it again I am very, very pleased. Here is my project: &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://74.63.154.225/~pauldenv/phyzx.htm"&gt;http://74.63.154.225/~pauldenv/phyzx.htm&lt;/A&gt;&lt;SPAN&gt; and scroll down to Finish Line.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Thanks for the help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Dec 2014 17:09:40 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-Development-Tools/Is-there-an-example-of-multiple-assembler-file-absolute-assembly/m-p/342016#M1435</guid>
      <dc:creator>giantkiller</dc:creator>
      <dc:date>2014-12-11T17:09:40Z</dc:date>
    </item>
    <item>
      <title>Re: Is there an example of multiple assembler file absolute assembly?</title>
      <link>https://community.nxp.com/t5/CodeWarrior-Development-Tools/Is-there-an-example-of-multiple-assembler-file-absolute-assembly/m-p/342017#M1436</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Paul,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just in case this will help you.&lt;/P&gt;&lt;P&gt;Just found an example containing 2 targets:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; - absolute project using 1 asm file.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; the .abs file is generated directly by assembler tool&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; - relocatable project using 2 asm files.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Have a great day,&lt;BR /&gt;Pascal&lt;BR /&gt;Freescale Technical Support&lt;BR /&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>Fri, 12 Dec 2014 14:13:08 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-Development-Tools/Is-there-an-example-of-multiple-assembler-file-absolute-assembly/m-p/342017#M1436</guid>
      <dc:creator>trytohelp</dc:creator>
      <dc:date>2014-12-12T14:13:08Z</dc:date>
    </item>
  </channel>
</rss>

