diff options
| author | 2022-01-07 12:04:07 -0500 | |
|---|---|---|
| committer | 2022-01-07 18:04:07 +0100 | |
| commit | fd736212854673efa8e2bcf2e1b2d3420bcacdb5 (patch) | |
| tree | 0ce9a5c6224cfb8f9d02f287b3122e9c67987c5d /scripts | |
| 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')
| -rw-r--r-- | scripts/src/formats.lua | 12 | ||||
| -rw-r--r-- | scripts/target/mame/mess.lua | 1 |
2 files changed, 13 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 diff --git a/scripts/target/mame/mess.lua b/scripts/target/mame/mess.lua index 5174922f8dc..07f55663b4a 100644 --- a/scripts/target/mame/mess.lua +++ b/scripts/target/mame/mess.lua @@ -1185,6 +1185,7 @@ FORMATS["ZX81_P"] = true FORMATS["FS_PRODOS"] = true FORMATS["FS_ORIC_JASMIN"] = true FORMATS["FS_COCO_RSDOS"] = true +FORMATS["FS_COCO_OS9"] = true -------------------------------------------------- -- this is the list of driver libraries that |
