Add read-only Amiga FFS support, via adflib.

This commit is contained in:
David Given
2022-08-29 00:33:01 +02:00
parent df5a60d946
commit 92316c4d83
19 changed files with 394 additions and 47 deletions

View File

@@ -35,12 +35,16 @@ message CpmFsProto {
optional Padding padding = 4 [(help) = "wasted sectors not considered part of the filesystem"];
}
message AmigaFfsProto {
}
message FilesystemProto {
oneof filesystem {
AcornDfsProto acorndfs = 1;
Brother120FsProto brother120 = 2;
FatFsProto fatfs = 3;
CpmFsProto cpmfs = 4;
AmigaFfsProto amigaffs = 5;
}
}