<?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: where can I find assembler file in CodeWarrior for MCU</title>
    <link>https://community.nxp.com/t5/CodeWarrior-for-MCU/where-can-I-find-assembler-file/m-p/131993#M1228</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt;&lt;/DIV&gt;I'm assuming you're using the HC08 tools. To generate a quick assembly dump, right-click on the source file's name and choose Disassemble from the drop-down menu that appears. If you're wanting to look at the final assembly with all of the addresses fixed up, go the Preferences panels (Edit | YourProjectName Settings...) and choose the Assembler panel. Click on the options button, and checkbox the item, "Generate a listing file". I'm using the HC12 tools here, so be warned the HC08 arrangement may be somewhat different.&lt;BR /&gt;&lt;BR /&gt;---Tom&lt;BR /&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 27 Apr 2007 23:17:38 GMT</pubDate>
    <dc:creator>J2MEJediMaster</dc:creator>
    <dc:date>2007-04-27T23:17:38Z</dc:date>
    <item>
      <title>where can I find assembler file</title>
      <link>https://community.nxp.com/t5/CodeWarrior-for-MCU/where-can-I-find-assembler-file/m-p/131992#M1227</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;I'm just starting to use CodeWarrior and would like to know where&amp;nbsp; i can find the generated assembler code. Is it a separate file somewhere?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Steve&lt;/SPAN&gt;&lt;BR /&gt;&lt;DIV&gt; &lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Apr 2007 22:53:29 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-for-MCU/where-can-I-find-assembler-file/m-p/131992#M1227</guid>
      <dc:creator>stevec</dc:creator>
      <dc:date>2007-04-27T22:53:29Z</dc:date>
    </item>
    <item>
      <title>Re: where can I find assembler file</title>
      <link>https://community.nxp.com/t5/CodeWarrior-for-MCU/where-can-I-find-assembler-file/m-p/131993#M1228</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt;&lt;/DIV&gt;I'm assuming you're using the HC08 tools. To generate a quick assembly dump, right-click on the source file's name and choose Disassemble from the drop-down menu that appears. If you're wanting to look at the final assembly with all of the addresses fixed up, go the Preferences panels (Edit | YourProjectName Settings...) and choose the Assembler panel. Click on the options button, and checkbox the item, "Generate a listing file". I'm using the HC12 tools here, so be warned the HC08 arrangement may be somewhat different.&lt;BR /&gt;&lt;BR /&gt;---Tom&lt;BR /&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Apr 2007 23:17:38 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-for-MCU/where-can-I-find-assembler-file/m-p/131993#M1228</guid>
      <dc:creator>J2MEJediMaster</dc:creator>
      <dc:date>2007-04-27T23:17:38Z</dc:date>
    </item>
    <item>
      <title>Re: where can I find assembler file</title>
      <link>https://community.nxp.com/t5/CodeWarrior-for-MCU/where-can-I-find-assembler-file/m-p/131994#M1229</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;Thanks. But that path doesn't come up on my CodeWarrior. None of the pull down menus have reference to any assembler options. The Help system documents which boxes to tick but doesn't say how to get to the Assembler drop down from the main CodeWarrior 'front page'. I am using CodeWarrior Development Studio&amp;nbsp; IDE version 5.7.0. Like I said I'm new to this software so am probably missing something obvious.&lt;BR /&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 May 2007 22:45:48 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-for-MCU/where-can-I-find-assembler-file/m-p/131994#M1229</guid>
      <dc:creator>stevec</dc:creator>
      <dc:date>2007-05-01T22:45:48Z</dc:date>
    </item>
    <item>
      <title>Re: where can I find assembler file</title>
      <link>https://community.nxp.com/t5/CodeWarrior-for-MCU/where-can-I-find-assembler-file/m-p/131995#M1230</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt;Hi steve,&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;You either write in "C" and "compile" to "machine code" OR write in "assembler" and "assemble" to "machine code".&lt;/DIV&gt;&lt;DIV&gt;If debugging or reverse engineering you might "disassemble" "machine code" into "assembler".&lt;/DIV&gt;&lt;DIV&gt;Machine code in the Motorola/Freescale world is often stored in a S-record format.&lt;/DIV&gt;&lt;DIV&gt;Codewarrior produces machine code strored in S-record format which it by default stores in \Projectname\bin as Project.abs.s19&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Given the above, what exactly are you after?&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 May 2007 05:24:27 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-for-MCU/where-can-I-find-assembler-file/m-p/131995#M1230</guid>
      <dc:creator>peg</dc:creator>
      <dc:date>2007-05-02T05:24:27Z</dc:date>
    </item>
    <item>
      <title>Re: where can I find assembler file</title>
      <link>https://community.nxp.com/t5/CodeWarrior-for-MCU/where-can-I-find-assembler-file/m-p/131996#M1231</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt;Hello&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;To get a look at the code generated by the compiler for one single module you have two solution:&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; 1- Use drop down menu&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; - Open the Project in the IDE&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; - Open the source file you want to check in an edit window&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; - Click with the right mouse button in the edit window and select Disassemble from the drop down menu.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; A new edit window will be opened showing the disassembly listing.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; 2-. Get the compiler to generate the disassembly listing when building&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; - Open the project in the IDE&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; - Open the Target setting window (Press ALT + F7)&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; - Switch to "Compiler for HC08" or "Compiler for HC12" (depending whether you are building&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; for HCS08 or HCS12).&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; - Add option -Lasm in the Command Line edit box.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Now each time you compile a source file the compiler will generate a disassembly listing file with&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;extension .lst in your output directory.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; The output directory is {Project}\bin if you did not change it in your project.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;I hope it helps.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;CrasyCat&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 May 2007 16:40:34 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-for-MCU/where-can-I-find-assembler-file/m-p/131996#M1231</guid>
      <dc:creator>CrasyCat</dc:creator>
      <dc:date>2007-05-02T16:40:34Z</dc:date>
    </item>
  </channel>
</rss>

