1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-10 12:29:01 +00:00

Merge pull request #620 from rzumer/fix_typos

Correct typos in Z80.hpp
This commit is contained in:
Thomas Harte 2019-04-24 13:25:06 -04:00 committed by GitHub
commit 757be2906e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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() {}