diff options
author | 2022-01-03 03:47:01 -0500 | |
---|---|---|
committer | 2022-01-03 09:47:01 +0100 | |
commit | fbff8a2483f0fd6eea53995fdf189817f81435d8 (patch) | |
tree | 7e2a641d018198bdcebd332b070bb74cf5f65cd2 /src/lib/formats/fsmeta.cpp | |
parent | 53d6b930ef0b871aa041040fce22ee09bb74678d (diff) |
Reimplemented support for the CoCo's RS-DOS filesystem on top of the "fsmgr" framework (currently read only) (#9080)
* Reimplemented support for the CoCo's RS-DOS filesystem on top of the "fsmgr" framework (currently read only)
* Added support for file_type and ascii_flag metadata, minor bug fix decoding file allocation table entries
* Creating a "CoCo Raw Disk" format and changing the CoCo RS-DOS filesystem to use it
* 1. Adding COCO_RAWDSK to all.cpp
2. Fixing sector order on CoCo raw disk
Diffstat (limited to 'src/lib/formats/fsmeta.cpp')
-rw-r--r-- | src/lib/formats/fsmeta.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lib/formats/fsmeta.cpp b/src/lib/formats/fsmeta.cpp index c5675d67a04..0159269a0d6 100644 --- a/src/lib/formats/fsmeta.cpp +++ b/src/lib/formats/fsmeta.cpp @@ -24,6 +24,8 @@ const char *meta_data::entry_name(meta_name name) case meta_name::rsrc_length: return "rsrc_length"; case meta_name::sequential: return "sequential"; case meta_name::size_in_blocks: return "size_in_blocks"; + case meta_name::file_type: return "file_type"; + case meta_name::ascii_flag: return "ascii_flag"; } return ""; } |