This commit is contained in:
michaelangel007 2023-06-12 23:24:15 -07:00
parent abb0c97467
commit 741a5cc36f
2 changed files with 3 additions and 2 deletions

View File

@ -156,6 +156,7 @@ Is this still needed?
" (Normally a sub-directory must be empty)\n"
, // DIR__DELETE2
" Alias for rmdir\n"
" NOTE: Not implemented yet!\n"
, NULL
};

View File

@ -166,7 +166,7 @@ if( block == PRODOS_ROOT_BLOCK )
struct ProDOS_FileHeader_t
{ ; //Rel Size Hex
uint8_t kind ; // +0 1 $00 \ Hi nibble Storage Type
uint8_t len ; // +0 / Lo nibble
uint8_t len ; // +0 / Lo nibble Filename Length
char name[ 16 ] ; // +1 15 $05 15 on disk but we NULL terminate for convenience
// --- diff from volume ---
uint8_t type ; //+16 1 $10 User Type
@ -1626,7 +1626,7 @@ void ProDOS_Init( const char *path )
// Read T0S0 and save it to a file on the host
// @returns 0 if succes
// @returns true if succes
// ========================================================================
bool ProDOS_ExtractBootSector( const char *pBootSectorFileName )
{