<?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: goto command</title>
    <link>https://community.nxp.com/t5/CodeWarrior-for-MCU/goto-command/m-p/125832#M257</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt;There is no such command available in CodeWarrior for HCS12 V3.1 debugger.&lt;/DIV&gt;&lt;DIV&gt;What you can do here is:&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; - Set a temporary breakpoint at the beginning of the instruction (Same as a&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Run to Cursor with the GUI)&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; - Wait for the application to stop&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; - GO to continue execution if you do not want to actually stop&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; - Write your additional commands&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;This is encoded as follows in the command file:&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&amp;nbsp; BS timaISR&amp;nbsp; T&amp;nbsp;&amp;nbsp; // Set temporary breakpoint at function timaISR&amp;nbsp; entry point&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&amp;nbsp; WAIT ;s&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // Wait till application stops (on teh breakpoint)&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; GO&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; // Continue execution of teh application&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;// Insert additional commands here.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;I hope this helps.&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 06 Feb 2006 19:21:46 GMT</pubDate>
    <dc:creator>CrasyCat</dc:creator>
    <dc:date>2006-02-06T19:21:46Z</dc:date>
    <item>
      <title>goto command</title>
      <link>https://community.nxp.com/t5/CodeWarrior-for-MCU/goto-command/m-p/125829#M254</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt;i m using codewarrior V3.1.0 and the target is M68KIT912DP256. when i compile or make my project and after enter the debug mode it can not be used goto command.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;but the old version for debugger whose name is motorola modular development system (MMDS), YOU CAN USE THİS COMMAND EASILY.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;i m sure that there is a way to implement this.but i can not find. please help me to find.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;best regards.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Feb 2006 17:44:05 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-for-MCU/goto-command/m-p/125829#M254</guid>
      <dc:creator>desponia_</dc:creator>
      <dc:date>2006-02-03T17:44:05Z</dc:date>
    </item>
    <item>
      <title>Re: goto command</title>
      <link>https://community.nxp.com/t5/CodeWarrior-for-MCU/goto-command/m-p/125830#M255</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P align="left"&gt;&lt;FONT size="2"&gt;Hello&lt;/FONT&gt;&lt;/P&gt;&lt;P align="left"&gt;&lt;FONT size="2"&gt;What are you attempting to achieve with the goto debug command?&lt;/FONT&gt;&lt;/P&gt;&lt;P align="left"&gt;&lt;FONT size="2"&gt;goto command is used within a command file to skip a set of commands.&lt;/FONT&gt;&lt;/P&gt;&lt;P align="left"&gt;&lt;FONT size="2"&gt;Are you using teh goto command within a comamnd file? Can I get a look at the content of teh command file?&lt;/FONT&gt;&lt;/P&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Feb 2006 22:05:36 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-for-MCU/goto-command/m-p/125830#M255</guid>
      <dc:creator>CrasyCat</dc:creator>
      <dc:date>2006-02-03T22:05:36Z</dc:date>
    </item>
    <item>
      <title>Re: goto command</title>
      <link>https://community.nxp.com/t5/CodeWarrior-for-MCU/goto-command/m-p/125831#M256</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear friend&lt;/P&gt;&lt;P&gt;i will use the goto command to understand if my code goes any function without using break.&lt;/P&gt;&lt;P&gt;for example you are using tima intterrupt function called timaISR&lt;/P&gt;&lt;DIV&gt;if you want to learn if it works rigth you can use following command in mmds&amp;nbsp;, old kind of debugger ,&amp;nbsp;command window.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;goto timaISR&amp;nbsp;by this command&amp;nbsp;my codes must executed until timaISR and&lt;/DIV&gt;&lt;DIV&gt;must wait for my next command.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;best regards.&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Feb 2006 18:35:49 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-for-MCU/goto-command/m-p/125831#M256</guid>
      <dc:creator>desponia_</dc:creator>
      <dc:date>2006-02-06T18:35:49Z</dc:date>
    </item>
    <item>
      <title>Re: goto command</title>
      <link>https://community.nxp.com/t5/CodeWarrior-for-MCU/goto-command/m-p/125832#M257</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt;There is no such command available in CodeWarrior for HCS12 V3.1 debugger.&lt;/DIV&gt;&lt;DIV&gt;What you can do here is:&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; - Set a temporary breakpoint at the beginning of the instruction (Same as a&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Run to Cursor with the GUI)&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; - Wait for the application to stop&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; - GO to continue execution if you do not want to actually stop&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; - Write your additional commands&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;This is encoded as follows in the command file:&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&amp;nbsp; BS timaISR&amp;nbsp; T&amp;nbsp;&amp;nbsp; // Set temporary breakpoint at function timaISR&amp;nbsp; entry point&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&amp;nbsp; WAIT ;s&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // Wait till application stops (on teh breakpoint)&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; GO&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; // Continue execution of teh application&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;// Insert additional commands here.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;I hope this helps.&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Feb 2006 19:21:46 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-for-MCU/goto-command/m-p/125832#M257</guid>
      <dc:creator>CrasyCat</dc:creator>
      <dc:date>2006-02-06T19:21:46Z</dc:date>
    </item>
    <item>
      <title>Re: goto command</title>
      <link>https://community.nxp.com/t5/CodeWarrior-for-MCU/goto-command/m-p/125833#M258</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;THANKS A LOT DEAR FRİEND&lt;/P&gt;&lt;P&gt;YOUR RESPONCE WAS DIFFINETLY WHAT I NEED.&lt;/P&gt;&lt;P&gt;GOOD CARE OF YOURSELF ALOT&lt;/P&gt;&lt;P&gt;BEST REGARDS&lt;/P&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Feb 2006 16:22:00 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-for-MCU/goto-command/m-p/125833#M258</guid>
      <dc:creator>desponia_</dc:creator>
      <dc:date>2006-02-07T16:22:00Z</dc:date>
    </item>
  </channel>
</rss>

