FruitMachine-Swift/FruitMachine/AppleI/PIA.swift

21 lines
304 B
Swift

//
// PIA.swift
// FruitMachine
//
// Created by Christopher Rohl on 7/28/17.
// Copyright © 2017 Christopher Rohl. All rights reserved.
//
import Cocoa
class PIA: NSObject {
var data: UInt8
var control: UInt8
override init() {
data = 0x00
control = 0x00
}
}