<?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>CodeWarrior for MCUのトピックRe: assembler for FLASH CW 5.7 MC9s08RE16</title>
    <link>https://community.nxp.com/t5/CodeWarrior-for-MCU/assembler-for-FLASH-CW-5-7-MC9s08RE16/m-p/186563#M6489</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;On the page I specified last time there is a link "&lt;A href="http://www.freescale.com/files/soft_dev_tools/doc/support_info/CW_816-bit_Technical_Notes_SP.exe?fpsp=1&amp;amp;WT_TYPE=Supporting%20Information&amp;amp;WT_VENDOR=FREESCALE&amp;amp;WT_FILE_FORMAT=exe&amp;amp;WT_ASSET=Documentation" rel="nofollow" target="_blank"&gt;816TNSP&lt;/A&gt;&amp;nbsp;", which will download all the Technical notes.&lt;/DIV&gt;&lt;DIV&gt;TN235 should be in there&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>Thu, 07 Feb 2008 22:50:15 GMT</pubDate>
    <dc:creator>CrasyCat</dc:creator>
    <dc:date>2008-02-07T22:50:15Z</dc:date>
    <item>
      <title>assembler for FLASH CW 5.7 MC9s08RE16</title>
      <link>https://community.nxp.com/t5/CodeWarrior-for-MCU/assembler-for-FLASH-CW-5-7-MC9s08RE16/m-p/186556#M6482</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I am wishing to store and read data in FLASH memory. I have utilised the code for FLASH Application Examples in the HCS08 reference manual, using inline assembler. I am getting various errors mostly relating to references to label addresses within the code.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Can anyone point me towards any C/assembler code that will allow me to store/retrieve data in FLASH.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;The type of thing the compiler doesn't like is&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;lda&amp;nbsp;&amp;nbsp; #SubLabel1&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;.....&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;SubLabel1:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I have no experience of mixing assembler and C.&lt;/SPAN&gt;&lt;BR /&gt;&lt;DIV&gt; &lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Feb 2008 01:41:02 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-for-MCU/assembler-for-FLASH-CW-5-7-MC9s08RE16/m-p/186556#M6482</guid>
      <dc:creator>stevec</dc:creator>
      <dc:date>2008-02-06T01:41:02Z</dc:date>
    </item>
    <item>
      <title>Re: assembler for FLASH CW 5.7 MC9s08RE16</title>
      <link>https://community.nxp.com/t5/CodeWarrior-for-MCU/assembler-for-FLASH-CW-5-7-MC9s08RE16/m-p/186557#M6483</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;Further info.&lt;BR /&gt;&lt;BR /&gt;I am using inline assembler not a separate assembler file.&lt;BR /&gt;&lt;BR /&gt;errors for example&lt;BR /&gt;&lt;BR /&gt;ldhx #SpSubEnd&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp; Immediate/Global addres expected&lt;BR /&gt;&lt;BR /&gt;cphx #SpSub -1&amp;nbsp; &amp;nbsp;&amp;nbsp; Illegal operands&lt;BR /&gt;&lt;BR /&gt;SpSubEnd and SpSub are labels elsewhere in the inline assembly code&lt;BR /&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Feb 2008 01:52:57 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-for-MCU/assembler-for-FLASH-CW-5-7-MC9s08RE16/m-p/186557#M6483</guid>
      <dc:creator>stevec</dc:creator>
      <dc:date>2008-02-06T01:52:57Z</dc:date>
    </item>
    <item>
      <title>Re: assembler for FLASH CW 5.7 MC9s08RE16</title>
      <link>https://community.nxp.com/t5/CodeWarrior-for-MCU/assembler-for-FLASH-CW-5-7-MC9s08RE16/m-p/186558#M6484</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt;&lt;/DIV&gt;You've got two issues:&lt;BR /&gt;&lt;BR /&gt;1) How to use inline assembly in C. For that, you you'll want to consult the HC(S)08/RS08 Assembler Manual for Microcontrollers. It explains how to mix C and assembly. The manual should be part of your CodeWarrior installation. Look under the \Help directory.&lt;BR /&gt;&lt;BR /&gt;2) Programming Flash. Although the areas of Flash resemble memory and can be read like memory, writing to them to store data is completely different. As this topic comes up often, I'd recommend using the forum search (text entry box at the lower left of this web page) to conduct a search using the phrase "Flash programming".&lt;BR /&gt;&lt;BR /&gt;---Tom&lt;BR /&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Feb 2008 04:18:22 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-for-MCU/assembler-for-FLASH-CW-5-7-MC9s08RE16/m-p/186558#M6484</guid>
      <dc:creator>J2MEJediMaster</dc:creator>
      <dc:date>2008-02-07T04:18:22Z</dc:date>
    </item>
    <item>
      <title>Re: assembler for FLASH CW 5.7 MC9s08RE16</title>
      <link>https://community.nxp.com/t5/CodeWarrior-for-MCU/assembler-for-FLASH-CW-5-7-MC9s08RE16/m-p/186559#M6485</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;Thanks Tom,&lt;BR /&gt;&lt;BR /&gt;1. The Assembler manual shows how to "mix assembler source files and C source files in a single application". I would ideally like to use in line assembler, which is not covered in the Assembler manual but in the C Compiler manual. I have printed this off and can find no reference as to how to reference a label address as in&lt;BR /&gt;&lt;BR /&gt;ldhx #SpSubEnd&lt;BR /&gt;.&lt;BR /&gt;.&lt;BR /&gt;SPSubEnd:&lt;BR /&gt;.&lt;BR /&gt;.&lt;BR /&gt;This produces most of my errors.&lt;BR /&gt;&lt;BR /&gt;2. The HCS08 reference manual covers writing into flash and has some application code (in assembler) to put the relevant code onto the stack and execute it from there while the Flash is being accessed. It is this code that I am trying to include into my C code. The assembler code copies part of itself to the stack and thus the requirement to reference labels as these mark the start and end of the code to be transferred. I only need to store four or five bytes of data as backup while the processor is powered down.&lt;BR /&gt;&lt;BR /&gt;I will continue to search for 'flash programming' on this forum.&lt;BR /&gt;&lt;BR /&gt;Steve&lt;BR /&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Feb 2008 17:11:12 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-for-MCU/assembler-for-FLASH-CW-5-7-MC9s08RE16/m-p/186559#M6485</guid>
      <dc:creator>stevec</dc:creator>
      <dc:date>2008-02-07T17:11:12Z</dc:date>
    </item>
    <item>
      <title>Re: assembler for FLASH CW 5.7 MC9s08RE16</title>
      <link>https://community.nxp.com/t5/CodeWarrior-for-MCU/assembler-for-FLASH-CW-5-7-MC9s08RE16/m-p/186560#M6486</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;After a search on the forums , one possible solution is to rewrite the assembler code in C and relocate it to RAM as covered in TN228. I have also found reference to TN235 but cannot find the note anywhere.&lt;BR /&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Feb 2008 18:18:23 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-for-MCU/assembler-for-FLASH-CW-5-7-MC9s08RE16/m-p/186560#M6486</guid>
      <dc:creator>stevec</dc:creator>
      <dc:date>2008-02-07T18:18:23Z</dc:date>
    </item>
    <item>
      <title>Re: assembler for FLASH CW 5.7 MC9s08RE16</title>
      <link>https://community.nxp.com/t5/CodeWarrior-for-MCU/assembler-for-FLASH-CW-5-7-MC9s08RE16/m-p/186561#M6487</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;Hello&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;According to my understanding what you are trying to achieve here is coping a code snippet on the stack and running it from there.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Am I right?&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;There is a technical note on that subject TN235 which describes how to achieve that.&lt;/DIV&gt;&lt;DIV&gt;You can retrieve the Technical Note from your installation CD or download them from following URL:&lt;/DIV&gt;&lt;DIV&gt;&lt;A href="http://www.freescale.com/webapp/sps/site/prod_summary.jsp?code=CWS-H08-STDED-CX&amp;amp;fpsp=1&amp;amp;tab=Documentation_Tab" rel="nofollow" target="_blank"&gt;http://www.freescale.com/webapp/sps/site/prod_summary.jsp?code=CWS-H08-STDED-CX&amp;amp;fpsp=1&amp;amp;tab=Documentation_Tab&lt;/A&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Around your question.&lt;/DIV&gt;&lt;DIV&gt;When you are programming in inline assembler, you are able to use assembler instruction within a ANSI C source file.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Labels you define in an inline assembly function have same property and scope as ANSI C labels.&lt;/DIV&gt;&lt;DIV&gt;In ANSI C a label does not have an absolute address, it is just a marker so you cannot retrieve the label absolute address.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;This is a limitation in HLI assembler syntax.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;CrasyCat&lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;Message Edited by CrasyCat on &lt;SPAN class="date_text"&gt;2008-02-07&lt;/SPAN&gt; &lt;SPAN class="time_text"&gt;11:21 AM&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Feb 2008 18:21:17 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-for-MCU/assembler-for-FLASH-CW-5-7-MC9s08RE16/m-p/186561#M6487</guid>
      <dc:creator>CrasyCat</dc:creator>
      <dc:date>2008-02-07T18:21:17Z</dc:date>
    </item>
    <item>
      <title>Re: assembler for FLASH CW 5.7 MC9s08RE16</title>
      <link>https://community.nxp.com/t5/CodeWarrior-for-MCU/assembler-for-FLASH-CW-5-7-MC9s08RE16/m-p/186562#M6488</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;Thanks for clarifying about the limitations of the HLI assembler syntax.&lt;BR /&gt;&lt;BR /&gt;As I mentioned in my previous post I can not find TN235 (not checked installation CD yet) and it is not under the link you sent. I found reference to a TN228 has some relevance.&lt;BR /&gt;&lt;BR /&gt;In case anyone else finds this thread in a search, I have also just found FAQ-26240 which also looks helpful&lt;BR /&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Feb 2008 19:37:53 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-for-MCU/assembler-for-FLASH-CW-5-7-MC9s08RE16/m-p/186562#M6488</guid>
      <dc:creator>stevec</dc:creator>
      <dc:date>2008-02-07T19:37:53Z</dc:date>
    </item>
    <item>
      <title>Re: assembler for FLASH CW 5.7 MC9s08RE16</title>
      <link>https://community.nxp.com/t5/CodeWarrior-for-MCU/assembler-for-FLASH-CW-5-7-MC9s08RE16/m-p/186563#M6489</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;On the page I specified last time there is a link "&lt;A href="http://www.freescale.com/files/soft_dev_tools/doc/support_info/CW_816-bit_Technical_Notes_SP.exe?fpsp=1&amp;amp;WT_TYPE=Supporting%20Information&amp;amp;WT_VENDOR=FREESCALE&amp;amp;WT_FILE_FORMAT=exe&amp;amp;WT_ASSET=Documentation" rel="nofollow" target="_blank"&gt;816TNSP&lt;/A&gt;&amp;nbsp;", which will download all the Technical notes.&lt;/DIV&gt;&lt;DIV&gt;TN235 should be in there&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>Thu, 07 Feb 2008 22:50:15 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-for-MCU/assembler-for-FLASH-CW-5-7-MC9s08RE16/m-p/186563#M6489</guid>
      <dc:creator>CrasyCat</dc:creator>
      <dc:date>2008-02-07T22:50:15Z</dc:date>
    </item>
    <item>
      <title>Re: assembler for FLASH CW 5.7 MC9s08RE16</title>
      <link>https://community.nxp.com/t5/CodeWarrior-for-MCU/assembler-for-FLASH-CW-5-7-MC9s08RE16/m-p/186564#M6490</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT size="2"&gt;Hello Steve,&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT size="2"&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT size="2"&gt;I suspect that, from the label names you have used, you are attempting to adapt some existing flash programming&amp;nbsp;code, written entirely in assembler, to inline assembly.&amp;nbsp; An alternative approach is to&amp;nbsp;directly calling the assembly routines (within an .asm file), as a C function.&amp;nbsp; The only requirement is that the assembly routines use the same parameter passing convention as C.&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT size="2"&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT size="2"&gt;I discovered the attached code for a "Standard software SGF driver" (for HCS08 devices), apparently downloaded previously from somewhere on the Freescale website, I can't remember where.&amp;nbsp; The header file shows how the assembly routines are called as C functions.&amp;nbsp; As an example, I will&amp;nbsp;list one of the function prototypes from within the header file.&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT size="2"&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="Courier New" size="2"&gt;void Write_Flash(&lt;BR /&gt;&amp;nbsp;&amp;nbsp; unsigned char *dest,&amp;nbsp;&amp;nbsp; /* First address to be programmed */&lt;BR /&gt;&amp;nbsp;&amp;nbsp; unsigned char length,&amp;nbsp; /* Number of data bytes to be written */&lt;BR /&gt;&amp;nbsp;&amp;nbsp; unsigned char *source&amp;nbsp; /* Pointer to start of data buffer */&lt;BR /&gt;);&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT size="2"&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT size="2"&gt;The assembly routine is named &lt;FONT face="Courier New"&gt;Write_Flash&lt;/FONT&gt;, and actually used burst mode to write a number of bytes to flash.&amp;nbsp; The data to be written is contained within a suitable buffer, identified by &lt;FONT face="Courier New"&gt;source&lt;/FONT&gt;.&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT size="2"&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT size="2"&gt;If you examine the assembly code, you will find the following requirements on entry to the routine -&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT size="2"&gt;The first parameter, the destination address is pushed the stack, low byte first,&amp;nbsp;prior to the call.&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT size="2"&gt;The second parameter, the data length, is present in the accumulator.&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT size="2"&gt;The third parameter, the buffer address, is present in H:X.&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT size="2"&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT size="2"&gt;The &lt;FONT face="Courier New"&gt;Erase_Page&lt;/FONT&gt; routine has a single destination address parameter, and this is present in H:X.&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT size="2"&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT size="2"&gt;If you need to alter the number of parameters, and/or their type, there would be differences from the above.&amp;nbsp; However, if you stick with the same parameters, the functions should work, whatever the inner workings of the assembly routines.&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT size="2"&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT size="2"&gt;Yet another alternative is to provide a "C wrapper" for the assembly routines, where the inputs required by each routine are handled by inline assembler and then the routine is called as a JSR.&amp;nbsp; For example -&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT size="2"&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="Courier New" size="2"&gt;Write_Flash_Row(&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="Courier New" size="2"&gt;&amp;nbsp; &amp;nbsp;unsigned char *dest, unsigned char length, unsigned char *source)&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="Courier New" size="2"&gt;{&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="Courier New" size="2"&gt;&amp;nbsp;&amp;nbsp; asm {&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="Courier New" size="2"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ldhx dest&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="Courier New" size="2"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; pshx&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="Courier New" size="2"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; pshh&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="Courier New" size="2"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; lda&amp;nbsp; length&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="Courier New" size="2"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ldhx&amp;nbsp;source&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="Courier New" size="2"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; jsr&amp;nbsp; Write_Flash&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="Courier New" size="2"&gt;&amp;nbsp;&amp;nbsp; }&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="Courier New" size="2"&gt;}&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT size="2"&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT size="2"&gt;Regards,&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT size="2"&gt;Mac&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT size="2"&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT size="2"&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;Message Edited by bigmac on &lt;SPAN class="date_text"&gt;2008-02-11&lt;/SPAN&gt; &lt;SPAN class="time_text"&gt;02:01 AM&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 10 Feb 2008 22:48:12 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-for-MCU/assembler-for-FLASH-CW-5-7-MC9s08RE16/m-p/186564#M6490</guid>
      <dc:creator>bigmac</dc:creator>
      <dc:date>2008-02-10T22:48:12Z</dc:date>
    </item>
  </channel>
</rss>

