This repository has been archived by the owner on Aug 25, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f996927
commit 95ab607
Showing
110 changed files
with
7,662 additions
and
146 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,89 @@ | ||
/* | ||
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. | ||
2.9.1.11 Fixed: Right justify signed decimal values. | ||
Example: | ||
U 300 | ||
300:A9 80 A9 81 A9 FF A9 00 A9 01 A9 7E A9 7F | ||
Will display as: | ||
LDA #$80 #-128 | ||
LDA #$81 #-127 | ||
LDA #$FF #-1 | ||
LDA #$00 | ||
LDA #$01 #+1 | ||
LDA #$7E #+126 | ||
LDA #$7F #+127 | ||
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 | ||
SYM @ = 303 | ||
300: 20 03 03 | ||
2.9.1.7 Added: Extended SYM command to auto-generate symbol names when reverse engineering. NOTE: These symbols will be placed in User2. | ||
Example: | ||
SYM @ = 800 // Alias for: SYM _0800 = 0800 | ||
2.9.1.6 Added: Branch instructions now show target address. | ||
2.9.1.5 Added: Disassembly window now shows signed decimal values for immediate values. | ||
2.9.1.4 Changed: Show symbol warnings in Orange, and length of symbols in light blue. | ||
2.9.1.3 Added: DB commanoptionally supports = | ||
DB HGR = 2000:3FFF | ||
2.9.1.2 Fixed: Off by one end address when deleting DisasmData_t | ||
2.9.1.1 Added: X command now supports a range and will chop off the appropiate data sections. | ||
DB 2000:2005 | ||
X 2002:2003 | ||
Released post 1.30.7.0 | ||
|
||
2.9.1.0 Added: Bookmarks now have their own indicator (a number with a box around it) and replace the ":" separator. Updated Debug_Font.bmp | ||
|
||
.18 Fixed: Resetting bookmarks wasn't setting the total bookmarks back to zero. | ||
.17 Fixed: If all bookmarks were used then setting a new one wouldn't update an existing one to the new address. | ||
.16 Fixed: Replacing an existing bookmark incorrectly increased the total bookmark count. | ||
.15 Cleanup: HELP CALC examples and See also. | ||
.14 Fixed: HELP JSR wasn't color-coding syntax. | ||
.13 Added: PROFILE LIST now shows how many clock cycles were executed. | ||
.12 GH-PR#480: | ||
GH#462: Default to Shift+Left Click to toggle disasm columns | ||
Use 'disasm click <n>' to reconfigure this | ||
GH#473: Fixed bug caused by Util_MemoryTextFile, Line 51 not zero-terminating buffer by invalidating it. | ||
GH#476: Fixed off-by-one bug wrapping in debugger console | ||
GH#483: Shift+Left mouse button to toggle 6502 Status flag bits | ||
GH#484: Some corrections to APPLE2E.SYM | ||
.11 Added:"Warning" for long symbols when symbol table is loaded | ||
.10 Changed: "Warning" of symbols that alias to "Info." | ||
.9 Continuation of 2.8.0.8: Fix overflowing disassembly pane for long symbols | ||
.8 Fixed: Inactive Language Card bank now grayed out, main memory no longer double inverse. | ||
.7 Fixed: Memory softswitches are now in chronological order, and their background is a dark grey | ||
.6 Added: Read/Write for Main/Aux memory now shown | ||
.5 Added: Support for RAMWORKS in the Debugger Language Card Status | ||
.4 Added: Language Card Status now displayed | ||
.3 Cleanup drawing of soft switches | ||
.2 Fix crash when NTSC save/load total path length is > console width (80 chars) | ||
.1 Fixed: Implemented missing debugger "CD" command | ||
2.9.0.0 Added: ntsc save [filename], ntsc load [filename], to save/load the NTSC palette. | ||
Default filename is "[email protected]" | ||
To load this file in GIMP: Open, Select File Type: "Raw image data", Raw image data (*.data), RGB Alpha, Width: 4096, Height: 4 | ||
to save this file in GIMP: Open, Export To, Select File Type (By Extension) Raw image data, RGB Type: Standard (R,G,B) | ||
|
||
.12 Fixed: [PVS-Studio] Fixed false positive of buffer overflow with MIP_RANDOM | ||
.11 Fixed: [PVS-Studio] Fixed missing call to sprintf() in ConfigSave_PrepareHeader() | ||
.10 Fixed: [PVS-Studio] Fixed no-op in _6502_GetStackReturnAddress() | ||
.9 Added: BLOAD now recognizes the extensions .hgr or .hgr2 to load to $2000, or $4000 respectfully | ||
.8 Fixed: Showing/hiding the address and/or opcodes will show long symbolic targets without overflowing into the register info pane Bug #227 | ||
.7 Fixed: ASC #:# with string containing null byte wouldn't show rest of string | ||
.6 Added: Print-Screen when in debugger will copy the debugger window as text | ||
.5 Added: Print warnings about duplicate symbols when symbol tables are loaded | ||
.4 Fixed: Check for buffer overflow in CmdSymbolsInfo() if _CmdSymbolsInfoHeader() returns a very long string | ||
.3 Removed EXITBENCH from falsely being triggered with E. | ||
.2 Cleaned up error message for syminfo on invalid symbol table. | ||
.1 Fixed: Symbolic Targets > 20 chars no longer overflow into register window | ||
2.8.0.0 Released with AppleWin 1.25 | ||
|
||
2.7.0.# | ||
.36 Fixed: empty command was re-triggering previous command. Example: DW 6062, // test | ||
.35 Added: DW address -- round the length up to even number for convenience. Example: DW 6062 is equivalent to: DW 6062:6063 | ||
.34 Fixed: Unified auto-defined name: B_, W_, T_ for byte, word, or text respectively | ||
.33 Fixed: ASC range -- auto-define symbol name: T_#### | ||
.32 Fixed: DW range -- auto-define symbol name: W_#### | ||
.31 Fixed: DB range -- auto-define symbol name B_#### | ||
|
@@ -322,7 +404,6 @@ | |
|
||
2.6.0.8 Released with AppleWin 1.16.1 | ||
|
||
>>>>>>> .r619 | ||
2.6.0.6 Released with AppleWin 1.15 | ||
.6 Added new command '@' to display the search results | ||
.5 Fixed display results of Searching to be colorized | ||
|
Oops, something went wrong.