From 07582cee4a2ce70b8de0a46f272f8c63644fb8bc Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Sun, 3 Nov 2019 21:10:42 -0500 Subject: [PATCH] BusGrant is a further signal I will need. --- Processors/68000/68000.hpp | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Processors/68000/68000.hpp b/Processors/68000/68000.hpp index 4d484f0b6..10dd8d71e 100644 --- a/Processors/68000/68000.hpp +++ b/Processors/68000/68000.hpp @@ -84,6 +84,9 @@ struct Microcycle { /// is synchronised with the E clock to satisfy a valid peripheral address request. static const int IsPeripheral = 1 << 9; + /// Provides the 68000's bus grant line — indicating whether a bus request has been acknowledged. + static const int BusGrant = 1 << 10; + /// Contains a valid combination of the various static const int flags, describing the operation /// performed by this Microcycle. int operation = 0; @@ -371,13 +374,13 @@ template cla } /// Sets the bus request line. - /// This are of functionality is TODO. + /// This area of functionality is TODO. inline void set_bus_request(bool bus_request) { bus_request_ = bus_request; } /// Sets the bus acknowledge line. - /// This are of functionality is TODO. + /// This area of functionality is TODO. inline void set_bus_acknowledge(bool bus_acknowledge) { bus_acknowledge_ = bus_acknowledge; }