Added more debug messages GET

This commit is contained in:
Michaelangel007 2017-12-29 09:26:51 -08:00
parent ab5bd71d7b
commit 96277a4a8d
1 changed files with 8 additions and 0 deletions

View File

@ -684,6 +684,10 @@ int main( const int nArg, const char *aArg[] )
case DISK_COMMAND_FILE_GET:
{
#if DEBUG_MAIN
printf( "DEBUG: get\n" );
#endif
const char *pBootSectorFileName = NULL;
for( ; iArg < nArg; iArg++ )
@ -710,6 +714,10 @@ int main( const int nArg, const char *aArg[] )
readVolume( nArg, aArg, &iArg );
#if DEBUG_MAIN
printf( "DEBUG: get path: %s\n", gpPath );
#endif
if( pBootSectorFileName )
{
ProDOS_ExtractBootSector( pBootSectorFileName );