mirror of
https://github.com/AppleWin/AppleWin.git
synced 2025-01-15 18:29:56 +00:00
Debugger: 2.9.1.11 Fixed: Right justify signed decimal values.
This commit is contained in:
parent
f3c0e151ab
commit
5e70f7949c
@ -1,5 +1,7 @@
|
||||
/*
|
||||
|
||||
2.9.1.11 Fixed: Right justify signed decimal values.
|
||||
2.9.1.10 Fixed: Immedate #80 was not showing -128 for the signed decimal value.
|
||||
2.9.1.9 Fixed: Immediate #0 was showing '#' prefix but not showing zero for the signed decimal value. Changed to show the signed decimal value only if non zero.
|
||||
2.9.1.8 Changed: Disassembly window now lists symbol labels and symbol target address from User2 in orange.
|
||||
Example:
|
||||
U 300
|
||||
|
@ -51,7 +51,7 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
#define ALLOW_INPUT_LOWERCASE 1
|
||||
|
||||
// See /docs/Debugger_Changelog.txt for full details
|
||||
const int DEBUGGER_VERSION = MAKE_VERSION(2,9,1,10);
|
||||
const int DEBUGGER_VERSION = MAKE_VERSION(2,9,1,11);
|
||||
|
||||
|
||||
// Public _________________________________________________________________________________________
|
||||
|
@ -1797,6 +1797,10 @@ WORD DrawDisassemblyLine ( int iLine, const WORD nBaseAddress )
|
||||
|
||||
if( line.nImmediate )
|
||||
{
|
||||
// Right justify to target ADDR:##
|
||||
size_t len = strlen( line.sImmediateSignedDec );
|
||||
linerect.left += (2 + (4 - len)) * nDefaultFontWidth;
|
||||
|
||||
DebuggerSetColorFG( DebuggerGetColor( FG_INFO_OPERATOR ));
|
||||
PrintTextCursorX( "#", linerect );
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user