From 4d9d684618fe5df61abda50d073a9f8d02ac1fa1 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Sun, 8 Jan 2023 21:44:25 -0500 Subject: [PATCH] Add TODO on dangling hard-coded conversion. --- Components/9918/Implementation/Fetch.hpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Components/9918/Implementation/Fetch.hpp b/Components/9918/Implementation/Fetch.hpp index a6c2a2e48..03c3d9478 100644 --- a/Components/9918/Implementation/Fetch.hpp +++ b/Components/9918/Implementation/Fetch.hpp @@ -41,6 +41,12 @@ for the exceptions. */ +// TODO: external_slot needs to do a proper conversion back to the internal clock, +// not assume a multiply by two. +// +// (and, for MSX 2 purposes, it would ideally know how many cycles since the last access +// slot, probably, but I'm not completely sure that's necessary yet) + #define slot(n) \ if(use_end && end == n) return; \ [[fallthrough]]; \