FruitMachine-Swift/FruitMachine/M6502/Disassembly.swift

22 lines
462 B
Swift
Raw Normal View History

2017-07-22 19:46:02 +00:00
//
// Disassembly.swift
// FruitMachine
//
// Created by Christopher Rohl on 7/22/17.
// Copyright © 2017 Christopher Rohl. All rights reserved.
//
import Cocoa
class Disassembly: NSObject {
let instruction: CPUInstruction?
let address: UInt16
let data: [UInt8]
init(instruction: CPUInstruction?, address: UInt16, data: [UInt8]) {
self.instruction = instruction
self.address = address
self.data = data
}
}