diff options
author | 2022-10-15 11:02:48 +0200 | |
---|---|---|
committer | 2022-10-15 11:02:48 +0200 | |
commit | 153f096fd6f600b955b2da55b8539940cc499072 (patch) | |
tree | f8b2bdd27345618a88dadbd1db2bd926ab76b860 /scripts/src/formats.lua | |
parent | cf0f0bfe9f21608bd590edaaef2cf6dd107853c6 (diff) |
Added support for Intel ISIS-II filesystem (#10367)
* fs_isis: support for Intel ISIS-II filesystem added
* fs_isis: fix after CI failure
* fs_isis: adapted to changes in 5499683a239
* all.cpp: fixed amount of ws
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 7f802f850fa..132a33ec2ce 100644 --- a/scripts/src/formats.lua +++ b/scripts/src/formats.lua @@ -2220,4 +2220,16 @@ if opt_tool(FORMATS, "FS_COCO_OS9") then } end +-------------------------------------------------- +-- +--@src/lib/formats/fs_isis.h,FORMATS["FS_ISIS"] = true +-------------------------------------------------- + +if opt_tool(FORMATS, "FS_ISIS") then + files { + MAME_DIR.. "src/lib/formats/fs_isis.cpp", + MAME_DIR.. "src/lib/formats/fs_isis.h", + } +end + end |