From 71ac26944d180deaa577a67b02e995ded30f2486 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Zumer?= Date: Fri, 19 Apr 2019 17:44:52 -0400 Subject: [PATCH] Correct typos in Z80.hpp --- Processors/Z80/Z80.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Processors/Z80/Z80.hpp b/Processors/Z80/Z80.hpp index b659633d1..6a32b63e8 100644 --- a/Processors/Z80/Z80.hpp +++ b/Processors/Z80/Z80.hpp @@ -98,7 +98,7 @@ struct PartialMachineCycle { const HalfCycles length; /// The current value of the address bus. const uint16_t *const address; - /// If the Z80 is outputting to the data bus, a pointer to that value. Otherwise, a pointer to the lcoation where the current data bus value should be placed. + /// If the Z80 is outputting to the data bus, a pointer to that value. Otherwise, a pointer to the location where the current data bus value should be placed. uint8_t *const value; /// @c true if this operation is occurring only because of an external request; @c false otherwise. const bool was_requested; @@ -131,7 +131,7 @@ struct PartialMachineCycle { /*! A class providing empty implementations of the methods a Z80 uses to access the bus. To wire the Z80 to a bus, - machines should subclass BusHandler and then declare a realisation of the Z80 template, suplying their bus + machines should subclass BusHandler and then declare a realisation of the Z80 template, supplying their bus handler. */ class BusHandler { @@ -149,7 +149,7 @@ class BusHandler { } /*! - Announces completion of all the cycles supplied to a .run_for request on the 6502. Intended to allow + Announces completion of all the cycles supplied to a .run_for request on the Z80. Intended to allow bus handlers to perform any deferred output work. */ void flush() {}