FruitMachine-Swift/FruitMachine/M6502/Memory/ReadOverride.swift

17 lines
344 B
Swift

//
// ReadOverride.swift
// FruitMachine
//
// Created by Christopher Rohl on 7/26/17.
// Copyright © 2017 Christopher Rohl. All rights reserved.
//
import Cocoa
/* A ReadOverride is special behavior that occurs when a memory address is read.
Memory-mapped registers, peripherals, etc. */
class ReadOverride: MemoryOverride {
}