2019-07-26 05:51:36 +00:00
|
|
|
//
|
|
|
|
// AppDelegate.swift
|
|
|
|
// A2Mac
|
|
|
|
//
|
|
|
|
// Created by Tamas Rudnai on 7/25/19.
|
|
|
|
// Copyright © 2019 GameAlloy. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
import Cocoa
|
|
|
|
|
|
|
|
@NSApplicationMain
|
|
|
|
class AppDelegate: NSObject, NSApplicationDelegate {
|
|
|
|
|
|
|
|
|
2020-04-26 07:23:05 +00:00
|
|
|
@IBAction func ROM_Selected(_ sender: NSMenuItem) {
|
|
|
|
if let menuIdentifier = sender.identifier {
|
|
|
|
// rom_loadFile( Bundle.main.resourcePath, menuIdentifier.rawValue + ".rom" )
|
|
|
|
ViewController.romFileName = menuIdentifier.rawValue + ".rom"
|
|
|
|
m6502_ColdReset( Bundle.main.resourcePath, ViewController.romFileName )
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-23 06:16:41 +00:00
|
|
|
@IBAction func Disk1_Selected(_ sender: NSMenuItem) {
|
|
|
|
if let menuIdentifier = sender.identifier {
|
|
|
|
woz_loadFile( Bundle.main.resourcePath, menuIdentifier.rawValue + ".woz" )
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-26 05:51:36 +00:00
|
|
|
func applicationDidFinishLaunching(_ aNotification: Notification) {
|
|
|
|
// Insert code here to initialize your application
|
|
|
|
}
|
|
|
|
|
|
|
|
func applicationWillTerminate(_ aNotification: Notification) {
|
|
|
|
// Insert code here to tear down your application
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|