COF Bug still Exist

Beta Testing discussion on mikroPascal PRO for AVR.
Post Reply
Author
Message
hansfanic
Posts: 4
Joined: 10 Nov 2009 09:38

COF Bug still Exist

#1 Post by hansfanic » 31 Mar 2011 13:23

Hi Guys,

today i try the Version Beta 4.8 with this simple Test Program.
Optimizer Level is Zero for best Debug Result. Selected AVR is Tiny 24.
But, the cof Debug Feature doesn´t work, like in the older Vesrions.

Code: Select all

program Test;
{ Declarations section }
var
  eins, zwei, drei : byte;
begin
  { Main program }
  eins := 5;
  zwei := 3;
  drei := 7;
  while true do
    begin
      eins := zwei + drei;
      zwei := drei + 4;
    end;
end.
ME Debugger shows me Memory Location 0x60, 0x61, 0x62 for Variable eins, zwei and drei.
AVR Studio say Memeory Location is 0x00C0, 0x00C2, 0x00C4 for Variable eins, zwei and drei.
No COF Debug is possible.

Post Reply

Return to “mikroPascal PRO for AVR Beta Testing”