Page 1 of 1

Debugger check : hexa value

Posted: Mon Aug 17, 2009 11:49 pm
by Ollivier
Hello,

I think it would be better if we can read the hexadecimal value too.

Code: Select all

Variable [256
          $100]
Thank you

Ollivier

Posted: Tue Aug 18, 2009 1:08 am
by Kaeru Gaman
hu? ... how do you mean your question?

Code: Select all

Restore values
For n=0 To 2
  Read.b out.b
  Debug out
Next
DataSection
values:
Data.b $F0, $E0, $23
EndDataSection

Posted: Tue Aug 18, 2009 2:23 am
by Demivec
Kaeru Gaman wrote:hu? ... how do you mean your question?

Code: Select all

Restore values
For n=0 To 2
  Read.b out.b
  Debug out
Next
DataSection
values:
Data.b $F0, $E0, $23
EndDataSection
I think he means when the mouse pointer is over the code being debugged. It currently displays the variables current value only in decimal.

Posted: Tue Aug 18, 2009 2:43 am
by Ollivier
Exactly.

There is a little problem too.

When the mouse pointor is placed over a expression which must be analyzed by the debugger check (which is a very good idea), if the expression is too much at the right of the scope, the tip message given by the debugger check is outside the screen. Consequently, we can't read directly the value. The user must move the editor scroll bar from left to right.

If it was possible to have a correction of the position of the value tip message in order to read always the values directly, it could be a plus.

Ollivier

Posted: Tue Aug 18, 2009 9:13 am
by Kaeru Gaman
oh, I'm sorry, misunderstood this.

what about a general flag in the preferences, to chose if dec or hex should be displayed?
I think most times a programmer wants to see hex only or dec only...