diff options
author | 2022-01-07 12:04:07 -0500 | |
---|---|---|
committer | 2022-01-07 18:04:07 +0100 | |
commit | fd736212854673efa8e2bcf2e1b2d3420bcacdb5 (patch) | |
tree | 0ce9a5c6224cfb8f9d02f287b3122e9c67987c5d /scripts/src/formats.lua | |
parent | 3abc1a4805412a600ae572699db6dc6b1516d15f (diff) |
Created an initial file system implementation for OS-9 under the CoCo (#9096)
* 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
Diffstat (limited to 'scripts/src/formats.lua')
-rw-r--r-- | scripts/src/formats.lua | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/scripts/src/formats.lua b/scripts/src/formats.lua index 686c5c32e9f..66db5fd78d0 100644 --- a/scripts/src/formats.lua +++ b/scripts/src/formats.lua @@ -2124,4 +2124,16 @@ if opt_tool(FORMATS, "FS_COCO_RSDOS") then } end +-------------------------------------------------- +-- +--@src/lib/formats/fs_coco_os9.h,FORMATS["FS_COCO_OS9"] = true +-------------------------------------------------- + +if opt_tool(FORMATS, "FS_COCO_OS9") then + files { + MAME_DIR.. "src/lib/formats/fs_coco_os9.cpp", + MAME_DIR.. "src/lib/formats/fs_coco_os9.h", + } +end + end |