summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib/formats/all.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Created an initial file system implementation for OS-9 under the CoCo (#9096) npwoods2022-01-071-0/+7
| | | | | | | | * Created an initial file system implementation for OS-9 under the CoCo * Minor fixes to directory entry handling * Changed to use fsblk_t::r[8|16|24|32]b() - Changed the above functions to be const
* Reimplemented support for the CoCo's RS-DOS filesystem on top of the "fsmgr" ↵ npwoods2022-01-031-0/+14
| | | | | | | | | | | | 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
* Move filesystem library into separate namespace and use shorter uX type ↵ AJR2021-12-311-4/+4
| | | | names there
* Filesystem code cleanup AJR2021-12-141-1/+0
| | | | | | | - Eliminate dependencies on emu.h, replacing most fatalerror calls and floptool's ersatz emu_fatalerror class with standard exception classes - Use range-based std::string constructors in some methods - Move filesystem metadata handling to a separate source file - Eliminate src/emu as an include path for libformats (necessitates kludge in ti99_dsk.cpp)
* Copy/paste fix Olivier Galibert2021-05-261-1/+1
|
* vtech: Add floppy formats and fs Olivier Galibert2021-05-261-0/+15
|
* floppy: start block-devicing fielsystem support Olivier Galibert2021-04-281-0/+8
|
* thomson: Turn the extensions into slot devices, modernize the floppies Olivier Galibert2021-04-191-0/+8
|
* trs80m3: Added support for JV3 disks (not working) Robbbert2021-04-101-1/+3
|
* floppy: Beginning of the support for preformatted floppy images. Olivier Galibert2021-03-051-0/+9
| | | | | | What's missing: - parameters (like the disk name when it exists) - possibly a cleanup of ram_open and friends (but not sure of the appropriate direction in which to go)
* formats: Fix missed RC759 format Dirk Best2021-03-041-0/+9
|
* formats: Create mame_formats_full_list which gives access to all the ↵ Olivier Galibert2021-03-041-0/+1351
supported formats, make floptool use it. Castool should use it too probably, but I don't want to touch it.