summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2021-09-13 06:24:23 +1000
committer Vas Crabb <vas@vastheman.com>2021-09-13 06:24:23 +1000
commitf7d1c0dca44e1f425b3636bb19f0310ef34c6856 (patch)
tree0ff53b496bdf5d97f0cfa4ed7edf73eacf6494ae /src/devices/machine
parentda0df4bb6c54d7077491a6b8d73892a99c46b6bf (diff)
-goldnpkr.cpp: Base screen parameters on how games program the CRTC.
* Filled in proper screen parameters for goldnpkr, witchcrd and megadpkr. There may be other games that use different parameters. * Demoted megadpkr and megadpkrb to not working as they can only boot once before writing timekeeper data that prevents booting again. -Tidied up a few drivers a little.
Diffstat (limited to 'src/devices/machine')
-rw-r--r--src/devices/machine/wd_fdc.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/devices/machine/wd_fdc.cpp b/src/devices/machine/wd_fdc.cpp
index 056faa5cdf5..8b767ee0501 100644
--- a/src/devices/machine/wd_fdc.cpp
+++ b/src/devices/machine/wd_fdc.cpp
@@ -1075,7 +1075,8 @@ void wd_fdc_device_base::do_generic()
void wd_fdc_device_base::do_cmd_w()
{
// it is actually possible to send another command even while in busy state.
- // currently we simply accept any commands, but chip logic probably more complex (presumable it is possible change command of the same type only).
+ // currently we simply accept any commands, but chip logic is probably more complex
+ // (presumably it is only possible change to a command of the same type).
#if 0
// Only available command when busy is interrupt
if(main_state != IDLE && (cmd_buffer & 0xf0) != 0xd0) {