diff options
author | 2019-04-26 09:12:01 -0700 | |
---|---|---|
committer | 2019-04-26 12:12:01 -0400 | |
commit | 8a8fcba1205a9b33506bf16fe74d8d74e6982fb2 (patch) | |
tree | 6f86d3d9c4896a7853b064eff63e939e5b7ff492 /scripts/src/formats.lua | |
parent | ca07dc3cc53b809954db77d8248c5642d0c0d12d (diff) |
Fix OS-9 disk writing bug (#4925)
* Start fixing OS9 disk handling
* Got it working, now need to refine and test
* Almost complete. Doing more testing...
* Tested aginst a varient of sotware. Solved bug. Cleaned up tabs.
* Turned on sector interleaving in OS9_DSK and retested.
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 9e7a2a1eb5a..5b678c480af 100644 --- a/scripts/src/formats.lua +++ b/scripts/src/formats.lua @@ -991,6 +991,18 @@ end -------------------------------------------------- -- +--@src/lib/formats/os9_dsk.h,FORMATS["OS9_DSK"] = true +-------------------------------------------------- + +if (FORMATS["OS9_DSK"]~=null or _OPTIONS["with-tools"]) then + files { + MAME_DIR.. "src/lib/formats/os9_dsk.cpp", + MAME_DIR.. "src/lib/formats/os9_dsk.h", + } +end + +-------------------------------------------------- +-- --@src/lib/formats/jfd_dsk.h,FORMATS["JFD_DSK"] = true -------------------------------------------------- |