mirror of
https://github.com/AppleWin/AppleWin.git
synced 2025-01-23 08:33:24 +00:00
Debugger 2.9.0.1: implemented cd command
This commit is contained in:
parent
ba1a08b96b
commit
f794f3f4c6
@ -1,5 +1,6 @@
|
||||
/*
|
||||
|
||||
.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 "AppleWinNTSC4096x4@32.data"
|
||||
To load this file in GIMP: Open, Select File Type: "Raw image data", Raw image data (*.data), RGB Alpha, Width: 4096, Height: 4
|
||||
|
@ -48,7 +48,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,0,0);
|
||||
const int DEBUGGER_VERSION = MAKE_VERSION(2,9,0,1);
|
||||
|
||||
|
||||
// Public _________________________________________________________________________________________
|
||||
@ -4041,6 +4041,26 @@ Update_t CmdConfigGetDebugDir (int nArgs)
|
||||
//===========================================================================
|
||||
Update_t CmdConfigSetDebugDir (int nArgs)
|
||||
{
|
||||
//if( nArgs > 2 )
|
||||
// return;
|
||||
|
||||
// PWD directory
|
||||
#if _WIN32
|
||||
// http://msdn.microsoft.com/en-us/library/aa365530(VS.85).aspx
|
||||
TCHAR sPath[ MAX_PATH + 1 ];
|
||||
_tcscpy( sPath, g_sCurrentDir ); // TODO: debugger dir has no ` CONSOLE_COLOR_ESCAPE_CHAR ?!?!
|
||||
_tcscat( sPath, g_aArgs[ 1 ].sArg );
|
||||
|
||||
if( SetCurrentImageDir( sPath ) )
|
||||
nArgs = 0; // intentional fall into
|
||||
#else
|
||||
#error "Need chdir() implemented"
|
||||
#endif
|
||||
|
||||
// PWD
|
||||
if( nArgs == 0 )
|
||||
return CmdConfigGetDebugDir(0);
|
||||
|
||||
return ConsoleUpdate();
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user