Bump debugger version 2.9.1.15

This commit is contained in:
michaelangel007 2023-03-20 19:58:27 -07:00
parent 8e59c2b0c1
commit 18c8997284
2 changed files with 4 additions and 1 deletions

View File

@ -1,4 +1,7 @@
/*
2.9.1.15 Added: QoL when a breakpoint register is hit display which register and breakpoint triggered it.
Example:
Stop reason: Register PC matches breakpoint #0
2.9.1.14 Fix disassembly when in middle of data
Example:
ASC 7D0:7D7

View File

@ -53,7 +53,7 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#define MAKE_VERSION(a,b,c,d) ((a<<24) | (b<<16) | (c<<8) | (d))
// See /docs/Debugger_Changelog.txt for full details
const int DEBUGGER_VERSION = MAKE_VERSION(2,9,1,14);
const int DEBUGGER_VERSION = MAKE_VERSION(2,9,1,15);
// Public _________________________________________________________________________________________