format F8 and unknown tagged file names

This commit is contained in:
nino-porcino 2022-03-30 11:41:54 +02:00
parent ae4f61cf28
commit 9e0651061c
2 changed files with 8 additions and 1 deletions

View File

@ -418,8 +418,15 @@ void send_directory_entry(byte command) {
strcpy(type,"BAS ");
strcpy(address,x+2);
}
else if(x[0]=='F' && x[1]=='8') {
strcpy(type,"ASB ");
strcpy(address,x+2);
}
else {
strcpy(type,"??? ");
type[0] = '#';
type[1] = x[0];
type[2] = x[1];
strcpy(address,x+2);
}
}

BIN
demos/test_066_3003.rar Normal file

Binary file not shown.