Implement CopyTape reading.

This commit is contained in:
2019-05-06 20:21:57 +01:00
parent ca1a226c50
commit c963a56af3
4 changed files with 170 additions and 10 deletions

View File

@@ -34,8 +34,9 @@ namespace DiscImageChef.DiscImages.CopyTape
{
public partial class CopyTape
{
const string BlockRegex = @"^CPTP:BLK (?<blockSize>\d{6})\n$";
const string FilemarkRegex = @"^CPTP:MRK\n$";
const string EndOfTapeRegex = @"^CPTP:EOT\n$";
const string BlockRegex = @"^CPTP:BLK (?<blockSize>\d{6})\n$";
const string PartialBlockRegex = @"^CPTP:BLK $";
const string FilemarkRegex = @"^CPTP:MRK\n$";
const string EndOfTapeRegex = @"^CPTP:EOT\n$";
}
}