FruitMachine-Swift/FruitMachine/M6502/MemoryInterface.swift

18 lines
321 B
Swift

//
// MemoryInterface.swift
// FruitMachine
//
// Created by Christopher Rohl on 7/20/17.
// Copyright © 2017 Christopher Rohl. All rights reserved.
//
import Cocoa
class MemoryInterface: NSObject {
var memory: [UInt8]
override init() {
memory = [UInt8](repeating: 0x00, count: 65536)
}
}