From c397da3e5ade82a534d58a8f38757de012fd49af Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Thu, 30 Nov 2023 12:52:08 -0500 Subject: [PATCH] Add TODOs. --- Machines/PCCompatible/PCCompatible.cpp | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Machines/PCCompatible/PCCompatible.cpp b/Machines/PCCompatible/PCCompatible.cpp index 5161abdd1..aae72a4e4 100644 --- a/Machines/PCCompatible/PCCompatible.cpp +++ b/Machines/PCCompatible/PCCompatible.cpp @@ -962,9 +962,14 @@ class IO { case 0x0006: dma_.i8237.write<6>(value); break; case 0x0007: dma_.i8237.write<7>(value); break; + // TODO: 0x0008 -> command + // TODO: 0x0001 -> mask + // TODO: 0x000b -> mode + case 0x000c: dma_.i8237.flip_flop_reset(); break; + case 0x0008: case 0x0009: case 0x000a: case 0x000b: - case 0x000c: case 0x000f: + case 0x000f: printf("TODO: DMA write of %02x at %04x\n", value, port); break;