mirror of
https://github.com/AppleWin/AppleWin.git
synced 2025-04-03 13:29:47 +00:00
Debugger 2.9.1.14 Fix disassembly when in middle of data
This commit is contained in:
parent
d01a9ccb40
commit
2a91824873
@ -1,4 +1,11 @@
|
||||
/*
|
||||
2.9.1.14 Fix disassembly when in middle of data
|
||||
Example:
|
||||
ASC 7D0:7D7
|
||||
ASC 7D8:7DF
|
||||
7CF:EA 40 41 42 43 44 45 46 47 48
|
||||
U 7D7
|
||||
|
||||
2.9.1.13 Added: CD now detects ".." to change to the previous directory and chops the trailing sub-directory from the current path.
|
||||
It worked before but would clutter up the current directory with a trailing "..\".
|
||||
2.9.1.12 Added: New commands HGR0, HGR3, HGR4, HGR5 to see pseudo pages $00, $60, $80, $A0 respectively.
|
||||
|
@ -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,13);
|
||||
const int DEBUGGER_VERSION = MAKE_VERSION(2,9,1,14);
|
||||
|
||||
|
||||
// Public _________________________________________________________________________________________
|
||||
|
@ -498,7 +498,10 @@ int _6502_GetOpmodeOpbyte ( const int nBaseAddress, int & iOpmode_, int & nOpby
|
||||
if ( pData_ )
|
||||
*pData_ = pData;
|
||||
|
||||
nSlack = pData->nEndAddress - pData->nStartAddress + 1; // *inclusive* KEEP IN SYNC: _CmdDefineByteRange() CmdDisasmDataList() _6502_GetOpmodeOpbyte() FormatNopcodeBytes()
|
||||
const DWORD nStartAddress = pData->nStartAddress;
|
||||
const DWORD nEndAddress = pData->nEndAddress;
|
||||
const int nDisplayLen = nEndAddress - nBaseAddress + 1; // *inclusive* KEEP IN SYNC: _CmdDefineByteRange() CmdDisasmDataList() _6502_GetOpmodeOpbyte() FormatNopcodeBytes()
|
||||
nSlack = nDisplayLen;
|
||||
|
||||
// Data Disassembler
|
||||
// Smart Disassembly - Data Section
|
||||
|
Loading…
x
Reference in New Issue
Block a user