<?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 QorIQ中的主题 Re: interrupt routine register stacking</title>
    <link>https://community.nxp.com/t5/CodeWarrior-for-QorIQ/interrupt-routine-register-stacking/m-p/135342#M744</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;P&gt;&lt;STRONG&gt;[Insert sarcastic participation here]&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Comic Sans MS"&gt;Euh, for general questions on how the forum works, posts should be on the&lt;/FONT&gt; &lt;A href="http://forums.freescale.com/freescale/board?board.id=FORUMUSE" target="_blank"&gt;&lt;FONT face="Comic Sans MS"&gt;&lt;STRONG&gt;&lt;EM&gt;General Use Board&lt;/EM&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/A&gt;&lt;FONT face="Comic Sans MS"&gt;&lt;STRONG&gt;&lt;EM&gt;.&lt;/EM&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;[End of sarcastic participation]&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Question is awright here, otherwise Mod &lt;EM&gt;would have moved it&lt;/EM&gt; to the appropriate board. Isn't it what the Mod should do ? &lt;IMG alt=":smileyhappy:" class="emoticon emoticon-smileyhappy" id="smileyhappy" src="http://freescale.i.lithium.com/i/smilies/16x16_smiley-happy.gif" title="Smiley Happy" /&gt;&lt;BR /&gt;Unfortunately I don't have a clue and can't have your subject progressing.&lt;/P&gt;&lt;P&gt;If your project is blocked or absolutely need an answer, please&amp;nbsp;&lt;A href="https://www.freescale.com/webapp/servicerequest.create_SR.framework?regFlag=fromOpenSR" rel="nofollow" target="_blank"&gt;&lt;STRONG&gt;Submit a Service Request&lt;/STRONG&gt;&lt;/A&gt; against CodeWarrior as it's the 'formal' system with guarantee of service... &lt;A href="http://www.freescale.com/TechSupport" rel="nofollow" target="_blank"&gt;&lt;STRONG&gt;&lt;/STRONG&gt;&lt;/A&gt;&lt;A href="http://www.freescale.com/TechSupport" target="test_blank"&gt;http://www.freescale.com/TechSupport&lt;/A&gt; shows a dashboard of possibilities.&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;Alban. - {Sacartic Mod}&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 11 May 2006 17:03:43 GMT</pubDate>
    <dc:creator>Alban</dc:creator>
    <dc:date>2006-05-11T17:03:43Z</dc:date>
    <item>
      <title>interrupt routine register stacking</title>
      <link>https://community.nxp.com/t5/CodeWarrior-for-QorIQ/interrupt-routine-register-stacking/m-p/135339#M741</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt; &lt;/DIV&gt;&lt;DIV&gt;I am running CW 6.2 and compiling for MCF5407.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;I have an interrupt routine that needs to access the stack.&amp;nbsp; However, the compiler is saving several registers (D0, D1, D2, A0, &amp;amp; A1)&amp;nbsp;to the stack at the beginning of the ISR.&amp;nbsp; Can I control which (if any) registers get saved to the stack?&amp;nbsp; If not, can I count on these registers always getting stacked as depicted below?&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Code snippets follow:&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;lt;pre&amp;gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN style="font-family: 'Courier New'; font-size: 2;"&gt;__declspec(interrupt)&lt;BR /&gt;void asm_exception_handler (void)&lt;BR /&gt;{&lt;BR /&gt;asm&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;{&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;/* Change to dBUG stack space */&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;move.l&amp;nbsp; sp,__SP_INIT&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;move.l&amp;nbsp; #__SP_INIT,sp&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN style="font-family: 'Courier New'; font-size: 2;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;move.l&amp;nbsp; a0,-(sp)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;lea&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; _contextr,a0&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN style="font-family: 'Courier New'; font-size: 2;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;movem.l d0-d7/a0-a7,(a0)&amp;nbsp;&amp;nbsp;&amp;nbsp; /* d0-d7/a0-a7 (a0/a7 are bad)&amp;nbsp;&amp;nbsp; */&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;move.l&amp;nbsp; (sp)+,r_a0(a0)&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; /* a0&amp;nbsp;&amp;nbsp;&amp;nbsp; */&lt;BR /&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN style="font-family: 'Courier New'; font-size: 2;"&gt;the dissasembly view:&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN style="font-family: 'Courier New'; font-size: 2;"&gt;7E000D7C: 4FEFFFEC&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; lea&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; -20(a7),a7&lt;BR /&gt;7E000D80: 48D70307&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; movem.l&amp;nbsp; d0-d2/a0-a1,(a7)&lt;BR /&gt;7E000D84: 23CF00048188&amp;nbsp;&amp;nbsp;&amp;nbsp; move.l&amp;nbsp;&amp;nbsp; a7,0x00048188 (0x48188)&lt;BR /&gt;7E000D8A: 2E7C00048188&amp;nbsp;&amp;nbsp;&amp;nbsp; movea.l&amp;nbsp; #295304,a7&lt;BR /&gt;7E000D90: 2F08&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; move.l&amp;nbsp;&amp;nbsp; a0,-(a7)&lt;BR /&gt;7E000D92: 41F90004397A&amp;nbsp;&amp;nbsp;&amp;nbsp; lea&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0x0004397A (0x4397a),a0&lt;BR /&gt;7E000D98: 48D0FFFF&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; movem.l&amp;nbsp; d0-d7/a0-a7,(a0)&lt;BR /&gt;7E000D9C: 215F0020&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; move.l&amp;nbsp;&amp;nbsp; (a7)+,32(a0)&lt;BR /&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN style="font-family: 'Courier New'; font-size: 2;"&gt;&amp;lt;/pre&amp;gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN style="font-family: 'Courier New'; font-size: 2;"&gt;Thanks,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN style="font-family: 'Courier New'; font-size: 2;"&gt;Joe&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 May 2006 22:26:22 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-for-QorIQ/interrupt-routine-register-stacking/m-p/135339#M741</guid>
      <dc:creator>nanoGeek</dc:creator>
      <dc:date>2006-05-09T22:26:22Z</dc:date>
    </item>
    <item>
      <title>Re: interrupt routine register stacking</title>
      <link>https://community.nxp.com/t5/CodeWarrior-for-QorIQ/interrupt-routine-register-stacking/m-p/135340#M742</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;P&gt;This post is off-topic for this forum. Have you tried posting this question to the new 68K/Coldfire forum?&lt;/P&gt;&lt;P&gt;&lt;A href="http://forums.freescale.com/freescale/board?board.id=CFCOMM" target="_blank"&gt;http://forums.freescale.com/freescale/board?board.id=CFCOMM&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Marc.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 May 2006 00:42:01 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-for-QorIQ/interrupt-routine-register-stacking/m-p/135340#M742</guid>
      <dc:creator>marc_paquette</dc:creator>
      <dc:date>2006-05-11T00:42:01Z</dc:date>
    </item>
    <item>
      <title>Re: interrupt routine register stacking</title>
      <link>https://community.nxp.com/t5/CodeWarrior-for-QorIQ/interrupt-routine-register-stacking/m-p/135341#M743</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt;&lt;/DIV&gt;hmmm...I am asking a question about how the compiler (specifically, CW) deals with the stack w.r.t. interrupt functions.&amp;nbsp; Not to be pedestrian, but how is this off topic?&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 May 2006 02:50:45 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-for-QorIQ/interrupt-routine-register-stacking/m-p/135341#M743</guid>
      <dc:creator>nanoGeek</dc:creator>
      <dc:date>2006-05-11T02:50:45Z</dc:date>
    </item>
    <item>
      <title>Re: interrupt routine register stacking</title>
      <link>https://community.nxp.com/t5/CodeWarrior-for-QorIQ/interrupt-routine-register-stacking/m-p/135342#M744</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;P&gt;&lt;STRONG&gt;[Insert sarcastic participation here]&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Comic Sans MS"&gt;Euh, for general questions on how the forum works, posts should be on the&lt;/FONT&gt; &lt;A href="http://forums.freescale.com/freescale/board?board.id=FORUMUSE" target="_blank"&gt;&lt;FONT face="Comic Sans MS"&gt;&lt;STRONG&gt;&lt;EM&gt;General Use Board&lt;/EM&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/A&gt;&lt;FONT face="Comic Sans MS"&gt;&lt;STRONG&gt;&lt;EM&gt;.&lt;/EM&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;[End of sarcastic participation]&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Question is awright here, otherwise Mod &lt;EM&gt;would have moved it&lt;/EM&gt; to the appropriate board. Isn't it what the Mod should do ? &lt;IMG alt=":smileyhappy:" class="emoticon emoticon-smileyhappy" id="smileyhappy" src="http://freescale.i.lithium.com/i/smilies/16x16_smiley-happy.gif" title="Smiley Happy" /&gt;&lt;BR /&gt;Unfortunately I don't have a clue and can't have your subject progressing.&lt;/P&gt;&lt;P&gt;If your project is blocked or absolutely need an answer, please&amp;nbsp;&lt;A href="https://www.freescale.com/webapp/servicerequest.create_SR.framework?regFlag=fromOpenSR" rel="nofollow" target="_blank"&gt;&lt;STRONG&gt;Submit a Service Request&lt;/STRONG&gt;&lt;/A&gt; against CodeWarrior as it's the 'formal' system with guarantee of service... &lt;A href="http://www.freescale.com/TechSupport" rel="nofollow" target="_blank"&gt;&lt;STRONG&gt;&lt;/STRONG&gt;&lt;/A&gt;&lt;A href="http://www.freescale.com/TechSupport" target="test_blank"&gt;http://www.freescale.com/TechSupport&lt;/A&gt; shows a dashboard of possibilities.&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;Alban. - {Sacartic Mod}&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 May 2006 17:03:43 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-for-QorIQ/interrupt-routine-register-stacking/m-p/135342#M744</guid>
      <dc:creator>Alban</dc:creator>
      <dc:date>2006-05-11T17:03:43Z</dc:date>
    </item>
    <item>
      <title>Re: interrupt routine register stacking</title>
      <link>https://community.nxp.com/t5/CodeWarrior-for-QorIQ/interrupt-routine-register-stacking/m-p/135343#M745</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;Using Codewarrior for the HC12 the following code can be used to contrl register stacking when entering a function. Do a search for "#praga" in Help for your Coldfire Codewarrior to see if this the same for target.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;BLOCKQUOTE&gt;&lt;A target="_blank"&gt;&lt;/A&gt;#pragma NO_ENTRY: No Entry Code&lt;A target="_blank"&gt;&lt;/A&gt;Scope&lt;A target="_blank"&gt;&lt;/A&gt;&lt;P&gt;Function&lt;/P&gt;&lt;A target="_blank"&gt;&lt;/A&gt;Syntax&lt;A target="_blank"&gt;&lt;/A&gt;&lt;P&gt;"#pragma NO_ENTRY"&lt;/P&gt;&lt;A target="_blank"&gt;&lt;/A&gt;Synonym&lt;A target="_blank"&gt;&lt;/A&gt;&lt;P&gt;None&lt;/P&gt;&lt;A target="_blank"&gt;&lt;/A&gt;Arguments&lt;A target="_blank"&gt;&lt;/A&gt;&lt;P&gt;None&lt;/P&gt;&lt;A target="_blank"&gt;&lt;/A&gt;Default&lt;A target="_blank"&gt;&lt;/A&gt;&lt;P&gt;None&lt;/P&gt;&lt;A target="_blank"&gt;&lt;/A&gt;Description&lt;A target="_blank"&gt;&lt;/A&gt;&lt;P&gt;This pragma suppresses the generation of the entry code and is useful for inline assembler functions.&lt;/P&gt;&lt;A target="_blank"&gt;&lt;/A&gt;&lt;P&gt;The code generated in a function with #pragma NO_ENTRY may not be safe. It is assumed that the user ensures stack use.&lt;/P&gt;NOTE&lt;A target="_blank"&gt;&lt;/A&gt;&lt;P&gt;Not all backends support this pragma. Some still generate entry code even if this pragma is specified.&lt;/P&gt;&lt;BR /&gt;&lt;A target="_blank"&gt;&lt;/A&gt;Example&lt;A target="_blank"&gt;&lt;/A&gt;&lt;P&gt;&lt;A href="mk:@MSITStore:C:/Program%20Files/Metrowerks/CodeWarrior%20CW12_V3.1/Help/Compiler_HC12.chm::/comp194.html#wp1631255" rel="nofollow noopener noreferrer" target="_blank"&gt;Listing 1.11&lt;/A&gt; shows how to use the NO_ENTRY pragma (along with others) to avoid any generated code by the compiler. All code is written in inline assembler.&lt;/P&gt;&lt;A target="_blank"&gt;&lt;/A&gt;&lt;DIV&gt;Listing 1.11 Blocking Compiler-generated Function Management Instructions&lt;/DIV&gt;&lt;DIV&gt;&lt;PRE&gt;#pragma NO_ENTRY &lt;A target="_blank"&gt;&lt;/A&gt;#pragma NO_EXIT &lt;A target="_blank"&gt;&lt;/A&gt;#pragma NO_FRAME &lt;A target="_blank"&gt;&lt;/A&gt;#pragma NO_RETURN &lt;A target="_blank"&gt;&lt;/A&gt;void Func0(void) { &lt;A target="_blank"&gt;&lt;/A&gt;  asm {/* no code should be writen by the compiler.*/ &lt;A target="_blank"&gt;&lt;/A&gt;    ... &lt;A target="_blank"&gt;&lt;/A&gt;  } &lt;A target="_blank"&gt;&lt;/A&gt;} &lt;A target="_blank"&gt;&lt;/A&gt;&lt;/PRE&gt;&lt;/DIV&gt;&lt;A target="_blank"&gt;&lt;/A&gt;See also&lt;A target="_blank"&gt;&lt;/A&gt;&lt;P&gt;&lt;A href="mk:@MSITStore:C:/Program%20Files/Metrowerks/CodeWarrior%20CW12_V3.1/Help/Compiler_HC12.chm::/comp195.html#wp972105" rel="nofollow noopener noreferrer" target="_blank"&gt;#pragma NO_EXIT&lt;/A&gt;&amp;nbsp;&lt;BR /&gt;&lt;A href="mk:@MSITStore:C:/Program%20Files/Metrowerks/CodeWarrior%20CW12_V3.1/Help/Compiler_HC12.chm::/comp196.html#wp972148" rel="nofollow noopener noreferrer" target="_blank"&gt;#pragma NO_FRAME&lt;/A&gt;&amp;nbsp;&lt;BR /&gt;&lt;A href="mk:@MSITStore:C:/Program%20Files/Metrowerks/CodeWarrior%20CW12_V3.1/Help/Compiler_HC12.chm::/comp199.html#wp972387" rel="nofollow noopener noreferrer" target="_blank"&gt;#pragma NO_RETURN&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 May 2006 17:31:55 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-for-QorIQ/interrupt-routine-register-stacking/m-p/135343#M745</guid>
      <dc:creator>Technoman64</dc:creator>
      <dc:date>2006-05-11T17:31:55Z</dc:date>
    </item>
    <item>
      <title>Re: interrupt routine register stacking</title>
      <link>https://community.nxp.com/t5/CodeWarrior-for-QorIQ/interrupt-routine-register-stacking/m-p/135344#M746</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;P&gt;I misread your post. I apologize for the confusion.&lt;/P&gt;&lt;P&gt;Thanks to&amp;nbsp;Technoman64 for correctly reading the original post and a solution.&lt;/P&gt;&lt;P&gt;nanoGeek, let me know if you need more help.&lt;/P&gt;&lt;P&gt;Distracted&amp;nbsp;by a miserable head cold,&lt;/P&gt;&lt;P&gt;Marc.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 May 2006 21:48:38 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-for-QorIQ/interrupt-routine-register-stacking/m-p/135344#M746</guid>
      <dc:creator>marc_paquette</dc:creator>
      <dc:date>2006-05-11T21:48:38Z</dc:date>
    </item>
    <item>
      <title>Re: interrupt routine register stacking</title>
      <link>https://community.nxp.com/t5/CodeWarrior-for-QorIQ/interrupt-routine-register-stacking/m-p/135345#M747</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;P&gt;Marc,&lt;/P&gt;&lt;P&gt;no problem.&amp;nbsp; Hope you get to feeling better soon.&lt;/P&gt;&lt;P&gt;As for this issue, CW for CF doesn't have the pragmas that Technoman64 indicated.&amp;nbsp; The only solutions I have found are:&lt;/P&gt;&lt;P&gt;1) move the ISR to a *.s file&lt;/P&gt;&lt;P&gt;2) use the function level asm option on the ISR:&lt;/P&gt;&lt;P&gt;__declspec(interrupt) asm void ISR(void){ .. }&lt;/P&gt;&lt;P&gt;(I was originally using the statement level asm directive)&lt;/P&gt;&lt;P&gt;Unfortunately, both options push&amp;nbsp;one squarely into assembly.&amp;nbsp; For my current project, that isn't a problem since it is in assembly anyway.&amp;nbsp; Also, I can't really make a case for having mixed C/ASM in this situation since it is a pretty rare case that you would want the ISR to access the intterupt stack frame anyway (this ISR is for processing TRACE and ILLOP interrupts as part of a Dbug code port).&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 May 2006 23:39:58 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-for-QorIQ/interrupt-routine-register-stacking/m-p/135345#M747</guid>
      <dc:creator>nanoGeek</dc:creator>
      <dc:date>2006-05-11T23:39:58Z</dc:date>
    </item>
    <item>
      <title>Re: interrupt routine register stacking</title>
      <link>https://community.nxp.com/t5/CodeWarrior-for-QorIQ/interrupt-routine-register-stacking/m-p/135346#M748</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt;The compiler engineer confirms it: the ColdFire compiler currently doesn't offer any options to control register saving and restoring for ISRs. I'll pass your question along to my colleagues as a request to add such a feature. You can also throw your voice in formally by submitting a service request:&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;To submit a service request:&lt;BR /&gt;&lt;BR /&gt;1. Go to &lt;A href="http://freescale.com/support" target="test_blank"&gt;http://freescale.com/support&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;2. In the Develop column, click "Technical Support."&lt;BR /&gt;&lt;BR /&gt;3. Click "Submit a service request."&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Marc.&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 May 2006 22:59:20 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-for-QorIQ/interrupt-routine-register-stacking/m-p/135346#M748</guid>
      <dc:creator>marc_paquette</dc:creator>
      <dc:date>2006-05-12T22:59:20Z</dc:date>
    </item>
  </channel>
</rss>

