<?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: rts throws Address Error after PIT enable in ColdFire/68K Microcontrollers and Processors</title>
    <link>https://community.nxp.com/t5/ColdFire-68K-Microcontrollers/rts-throws-Address-Error-after-PIT-enable/m-p/193100#M8465</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your reply.&amp;nbsp;&amp;nbsp;&amp;nbsp;It doesn't seem to call the isr.&lt;/P&gt;&lt;P&gt;If I skip the write in debug&amp;nbsp;I get the exception on rts as before but if I rem the line out and reflash I get past it OK.&amp;nbsp; But&amp;nbsp;how to enable the timer?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 24 Mar 2011 07:26:27 GMT</pubDate>
    <dc:creator>seagate</dc:creator>
    <dc:date>2011-03-24T07:26:27Z</dc:date>
    <item>
      <title>rts throws Address Error after PIT enable</title>
      <link>https://community.nxp.com/t5/ColdFire-68K-Microcontrollers/rts-throws-Address-Error-after-PIT-enable/m-p/193098#M8463</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This subroutine of TCP/IP stack in mcf 5223.c throws an exception when calling rts.&amp;nbsp; A7 points to the correct return address.&lt;/P&gt;&lt;P&gt;/*&lt;BR /&gt;&amp;nbsp;* Setup PIT Timer&lt;BR /&gt;&amp;nbsp;*/&lt;BR /&gt;void&lt;BR /&gt;PIT_Timer_Init(uint8 PCSR, uint16 PMR)&lt;BR /&gt;{&lt;/P&gt;&lt;P&gt;&amp;nbsp;/* Set tic for timers&amp;nbsp;*/&lt;/P&gt;&lt;P&gt;&amp;nbsp;MCF_PIT0_PCSR&amp;nbsp; = (uint16)(MCF_PIT_PCSR_PRE(PCSR));&amp;nbsp;/* Divide system clock/2 by 2^PCSR&amp;nbsp;*/&lt;BR /&gt;&amp;nbsp;MCF_INTC0_ICR55 = MCF_INTC_ICR_IL(TIMER_NETWORK_LEVEL)|MCF_INTC_ICR_IP(TIMER_NETWORK_PRIORITY);&lt;BR /&gt;&amp;nbsp;MCF_INTC0_IMRH &amp;amp;= ~MCF_INTC_IMRH_MASK55;&lt;BR /&gt;&amp;nbsp;MCF_PIT0_PMR = PMR;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;/* modulo count&amp;nbsp;*/&lt;BR /&gt;&amp;nbsp;MCF_PIT0_PCSR |= MCF_PIT_PCSR_OVW | MCF_PIT_PCSR_PIE |&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MCF_PIT_PCSR_PIF | MCF_PIT_PCSR_RLD |&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MCF_PIT_PCSR_EN;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;Any ideas?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Mar 2011 21:03:12 GMT</pubDate>
      <guid>https://community.nxp.com/t5/ColdFire-68K-Microcontrollers/rts-throws-Address-Error-after-PIT-enable/m-p/193098#M8463</guid>
      <dc:creator>seagate</dc:creator>
      <dc:date>2011-03-23T21:03:12Z</dc:date>
    </item>
    <item>
      <title>Re: rts throws Address Error after PIT enable</title>
      <link>https://community.nxp.com/t5/ColdFire-68K-Microcontrollers/rts-throws-Address-Error-after-PIT-enable/m-p/193099#M8464</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Check whether the same thing happens when the interrupt is not enabled (eg. skip the MCF_PIT0_PCSR write) - possibly (when debugging and stepping) the TICK fires and it is a problem with the interrupt handling rather than the RTS since the interrupt would occur (sort of) immediately.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Mark&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Mar 2011 05:50:47 GMT</pubDate>
      <guid>https://community.nxp.com/t5/ColdFire-68K-Microcontrollers/rts-throws-Address-Error-after-PIT-enable/m-p/193099#M8464</guid>
      <dc:creator>mjbcswitzerland</dc:creator>
      <dc:date>2011-03-24T05:50:47Z</dc:date>
    </item>
    <item>
      <title>Re: rts throws Address Error after PIT enable</title>
      <link>https://community.nxp.com/t5/ColdFire-68K-Microcontrollers/rts-throws-Address-Error-after-PIT-enable/m-p/193100#M8465</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your reply.&amp;nbsp;&amp;nbsp;&amp;nbsp;It doesn't seem to call the isr.&lt;/P&gt;&lt;P&gt;If I skip the write in debug&amp;nbsp;I get the exception on rts as before but if I rem the line out and reflash I get past it OK.&amp;nbsp; But&amp;nbsp;how to enable the timer?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Mar 2011 07:26:27 GMT</pubDate>
      <guid>https://community.nxp.com/t5/ColdFire-68K-Microcontrollers/rts-throws-Address-Error-after-PIT-enable/m-p/193100#M8465</guid>
      <dc:creator>seagate</dc:creator>
      <dc:date>2011-03-24T07:26:27Z</dc:date>
    </item>
    <item>
      <title>Re: rts throws Address Error after PIT enable</title>
      <link>https://community.nxp.com/t5/ColdFire-68K-Microcontrollers/rts-throws-Address-Error-after-PIT-enable/m-p/193101#M8466</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It may be that when debugging you are still executing the instruction to enable PIT and its interrupt (it is best to step in disassembler mode to be sure because the debugger can jump around about when source-level debugging). It does however sound as though the interrupt is not working correctly.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How have you configured the VBA and how have you entered the ISR in the vector base table?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Mark&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Mar 2011 07:32:55 GMT</pubDate>
      <guid>https://community.nxp.com/t5/ColdFire-68K-Microcontrollers/rts-throws-Address-Error-after-PIT-enable/m-p/193101#M8466</guid>
      <dc:creator>mjbcswitzerland</dc:creator>
      <dc:date>2011-03-24T07:32:55Z</dc:date>
    </item>
    <item>
      <title>Re: rts throws Address Error after PIT enable</title>
      <link>https://community.nxp.com/t5/ColdFire-68K-Microcontrollers/rts-throws-Address-Error-after-PIT-enable/m-p/193102#M8467</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;Vector 0x77 (64+55) -&amp;nbsp;PIT0 is listed as &amp;nbsp;_timer_isr.&amp;nbsp; The ISR is in Int_handlers.c as __interrupt__ void timer_isr(void)&amp;nbsp;.&amp;nbsp; A breakpoint in there does not get activated.&amp;nbsp; Can't see anything wrong there but is there a way of seeing what's happening on a smaller scale?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Mar 2011 21:06:53 GMT</pubDate>
      <guid>https://community.nxp.com/t5/ColdFire-68K-Microcontrollers/rts-throws-Address-Error-after-PIT-enable/m-p/193102#M8467</guid>
      <dc:creator>seagate</dc:creator>
      <dc:date>2011-03-24T21:06:53Z</dc:date>
    </item>
    <item>
      <title>Re: rts throws Address Error after PIT enable</title>
      <link>https://community.nxp.com/t5/ColdFire-68K-Microcontrollers/rts-throws-Address-Error-after-PIT-enable/m-p/193103#M8468</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;PIT0 indeed has vector 0x77. Make sure that the VBR is set to point to the location of the vector table (0x00000000 when in FLASH or 0x20000000 when in SRAM).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You could also analyse the exception that is being thrown (from somewhere) - there is a guide here: &lt;A href="http://www.utasker.com/forum/index.php?topic=123.msg468#msg468" rel="nofollow" target="_self"&gt;http://www.utasker.com/forum/index.php?topic=123.msg468#msg468&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Mark&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Mar 2011 01:13:05 GMT</pubDate>
      <guid>https://community.nxp.com/t5/ColdFire-68K-Microcontrollers/rts-throws-Address-Error-after-PIT-enable/m-p/193103#M8468</guid>
      <dc:creator>mjbcswitzerland</dc:creator>
      <dc:date>2011-03-25T01:13:05Z</dc:date>
    </item>
    <item>
      <title>Re: rts throws Address Error after PIT enable</title>
      <link>https://community.nxp.com/t5/ColdFire-68K-Microcontrollers/rts-throws-Address-Error-after-PIT-enable/m-p/193104#M8469</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think that is the answer.&amp;nbsp; Nothing to do with rts but the interrupt fires on the next instruction whatever it is.&lt;/P&gt;&lt;P&gt;The link you gave means I can now interpret the 'rubbish' address that appears on the cw stack after the exception - 0x41DC2000.&amp;nbsp; 1DC=4*0x77 and at 0x00001DC is the address of the ISR.&amp;nbsp; The VBR, however, is set to 0x2000000 and 0x200001DC points to no code!&lt;/P&gt;&lt;P&gt;Now why this should be is another story and maybe should be another thread. &amp;nbsp;I am using cw 7.2.1 and the code I am trying to run is possibly written for an older version.&amp;nbsp;&amp;nbsp; There is something different about the way parameters are passed.&amp;nbsp; During initiation the value 0x00000000 is loaded into A6 and then a sub called which takes its value from 4(A7) so the VBR&amp;nbsp;gets written with a 'random' value 0x20000189, setting it to point to SRAM.&lt;/P&gt;&lt;P&gt;Further research required!&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks a lot for the solution to my original problem&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Mar 2011 17:54:11 GMT</pubDate>
      <guid>https://community.nxp.com/t5/ColdFire-68K-Microcontrollers/rts-throws-Address-Error-after-PIT-enable/m-p/193104#M8469</guid>
      <dc:creator>seagate</dc:creator>
      <dc:date>2011-03-25T17:54:11Z</dc:date>
    </item>
    <item>
      <title>Re: rts throws Address Error after PIT enable</title>
      <link>https://community.nxp.com/t5/ColdFire-68K-Microcontrollers/rts-throws-Address-Error-after-PIT-enable/m-p/193105#M8470</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I believe that some basic settings were change between CW7.1 and CW7.2 since I heard of a similar problem with register passing.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1) You will probably find a file called mwerks.h somewhere being linked into the project (I think this goes back to when the software was called Hiware from Metrowerks before being taken over by Freescale) - there is a setting controlling passing return values:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;#pragma pointers_in_A0&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;With this, subroutines will pass return pointers in A0 (they return non-pointers in D0). Without it both, pointers and non-pointers are returned in D0. The libraries linked must match the application file settings.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;2) In the compiler options there is a setting to say whether subroutine parameters are passed via stack or registers (with registers the code is smaller and probably faster). Again the libraries used must match (the passing strategy can be see from their names).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;3) Any assembler code used must match: Assembler code has no settings and an assembler file written for stack passing will fail when used together with C code compiled for register passing. Therefore look into the assembler (usually the setting of VBA is performed in assembler code) since this file may no longer be compatible with the project settings.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The following are typical assembler codes for setting VBA:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;a) stack passing&lt;/P&gt;&lt;P&gt;_mcf5xxx_wr_vbr:&lt;BR /&gt;&amp;nbsp; &amp;nbsp; move.l&amp;nbsp; 4(SP),D0&lt;BR /&gt;&amp;nbsp;&amp;nbsp; .long&amp;nbsp;&amp;nbsp;&amp;nbsp; 0x4e7b0801&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // assembler code for movec d0,VBR&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; nop&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; rts&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;b) register passing (passed via d0)&lt;/P&gt;&lt;P&gt;_mcf5xxx_wr_vbr:&lt;BR /&gt;&amp;nbsp;&amp;nbsp; .long&amp;nbsp;&amp;nbsp;&amp;nbsp; 0x4e7b0801&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // assembler code for movec d0,VBR&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; nop&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; rts&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;c) when the assembler supportsMOVEC (also register passing)&lt;/P&gt;&lt;P&gt;mcf5xxx_wr_vbr:&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // sub-routine for access to VBR&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MOVEC.L D0, VBR&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; rts&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Mark&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 26 Mar 2011 04:16:52 GMT</pubDate>
      <guid>https://community.nxp.com/t5/ColdFire-68K-Microcontrollers/rts-throws-Address-Error-after-PIT-enable/m-p/193105#M8470</guid>
      <dc:creator>mjbcswitzerland</dc:creator>
      <dc:date>2011-03-26T04:16:52Z</dc:date>
    </item>
    <item>
      <title>Re: rts throws Address Error after PIT enable</title>
      <link>https://community.nxp.com/t5/ColdFire-68K-Microcontrollers/rts-throws-Address-Error-after-PIT-enable/m-p/193106#M8471</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;CW 7.2 is only register passing and the code I have is definately using stack passing.&amp;nbsp; I have changed as many of the asm functions, including:&lt;/P&gt;&lt;P&gt;mcf5xxx_wr_vbr:&lt;BR /&gt;_mcf5xxx_wr_vbr:&lt;BR /&gt;//&amp;nbsp;&amp;nbsp;&amp;nbsp; move.l&amp;nbsp; 4(SP),D0&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; .long&amp;nbsp;&amp;nbsp; 0x4e7b0801&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; /* movec d0,VBR */&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; nop&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; rts&lt;/P&gt;&lt;P&gt;The interrupts now work OK but the program still crashes eventually.&amp;nbsp; My options now seem to be:&lt;/P&gt;&lt;P&gt;1.&amp;nbsp; Find more asm code that needs modifying. Not a trivial task I fear.&lt;/P&gt;&lt;P&gt;2.&amp;nbsp; Get an older version of CodeWarrior.&amp;nbsp; 6.3 is still available.&lt;/P&gt;&lt;P&gt;3.&amp;nbsp; Put the lot in a shoebox in the 'too difficult' pile.&lt;/P&gt;&lt;P&gt;I'll post here again before going for option 3!&lt;/P&gt;&lt;P&gt;Thanks again.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 26 Mar 2011 20:00:37 GMT</pubDate>
      <guid>https://community.nxp.com/t5/ColdFire-68K-Microcontrollers/rts-throws-Address-Error-after-PIT-enable/m-p/193106#M8471</guid>
      <dc:creator>seagate</dc:creator>
      <dc:date>2011-03-26T20:00:37Z</dc:date>
    </item>
    <item>
      <title>Re: rts throws Address Error after PIT enable</title>
      <link>https://community.nxp.com/t5/ColdFire-68K-Microcontrollers/rts-throws-Address-Error-after-PIT-enable/m-p/193107#M8472</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;There is normally only one asm file in the project so probably the required changes were adequate.&lt;/P&gt;&lt;P&gt;There could be other reasons for a later exception which are unreleated. You need to analyse each as they arrive.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You can also get complete working projects from various sources to save time and heart-ache.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Mark&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="http://http://www.utasker.com/" rel="nofollow" target="_self"&gt;http://www.utasker.com/&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 26 Mar 2011 21:14:20 GMT</pubDate>
      <guid>https://community.nxp.com/t5/ColdFire-68K-Microcontrollers/rts-throws-Address-Error-after-PIT-enable/m-p/193107#M8472</guid>
      <dc:creator>mjbcswitzerland</dc:creator>
      <dc:date>2011-03-26T21:14:20Z</dc:date>
    </item>
    <item>
      <title>Re: rts throws Address Error after PIT enable</title>
      <link>https://community.nxp.com/t5/ColdFire-68K-Microcontrollers/rts-throws-Address-Error-after-PIT-enable/m-p/193108#M8473</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi again&lt;/P&gt;&lt;P&gt;I chased a lot of address errors .&amp;nbsp; It would hang halfway through sending text - maybe some buffer overflow?&amp;nbsp;&amp;nbsp;Anyway these went away when I disabled the debug texts.&amp;nbsp; So now it would run without error but with no ethernet access.&amp;nbsp;&amp;nbsp; Eventually I found another asm file&amp;nbsp;'chksum.s' which needed changing for&amp;nbsp;register passing.&lt;/P&gt;&lt;P&gt;Result!&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Apr 2011 18:00:34 GMT</pubDate>
      <guid>https://community.nxp.com/t5/ColdFire-68K-Microcontrollers/rts-throws-Address-Error-after-PIT-enable/m-p/193108#M8473</guid>
      <dc:creator>seagate</dc:creator>
      <dc:date>2011-04-08T18:00:34Z</dc:date>
    </item>
  </channel>
</rss>

