diff options
author | 2022-05-01 20:45:47 +0200 | |
---|---|---|
committer | 2022-05-02 04:45:47 +1000 | |
commit | 394107b576959f48311e07e73e92cb3e0f5cbe1b (patch) | |
tree | 89023921c1c761945ad3afdd85c99808fc8916a9 /scripts/src/formats.lua | |
parent | 9d77923b93885c49fa83fa361e9d9972eeec5d5a (diff) |
-tim011.cpp: Hooked up floppy drives properly. (#9649)
* Hooked up floppy drives and controller properly, and implemented video display.
* formats/tim011_dsk.cpp: Added TIM 011 floppy image format.
-machine/upd765.cpp: If waiting for additional command bytes, treat a data register read as an open bus write (tested on real hardware) and always trigger the DRQ line even if in nodma mode. [Carl
-cpu/z180: Added callbacks for tend; decrement bcr1 when DMA channel 1 is active. [Carl]
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 10b27e06ec3..1798880b0e0 100644 --- a/scripts/src/formats.lua +++ b/scripts/src/formats.lua @@ -1874,6 +1874,18 @@ end -------------------------------------------------- -- +--@src/lib/formats/tim011_dsk.h,FORMATS["TIM011_DSK"] = true +-------------------------------------------------- + +if opt_tool(FORMATS, "TIM011_DSK") then + files { + MAME_DIR.. "src/lib/formats/tim011_dsk.cpp", + MAME_DIR.. "src/lib/formats/tim011_dsk.h", + } +end + +-------------------------------------------------- +-- --@src/lib/formats/trd_dsk.h,FORMATS["TRD_DSK"] = true -------------------------------------------------- |