Z80Core class abstract

Abstract interface required to be implemented to use Z80CPU

Constructors

Z80Core()

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

ioRead(int port) int
Should read a return unsigned 8-bit byte read from the given I/O port.
ioWrite(int port, int value) → void
Should write the given unsigned 8-bit byte to the given I/O port.
memRead(int address) int
Should return the unsigned 8-bit byte at the given memory address.
memWrite(int address, int value) → void
Should write the given unsigned 8-bit byte value to the given memory address.
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited