mirror of
https://github.com/trudnai/Steve2.git
synced 2024-11-18 09:04:36 +00:00
15911de276
Added ROMs Added fonts for 80 col PR#3 Fixed Memory Init issues when Cold Reset Fixed Dummy Memory issues
40 lines
1.1 KiB
Swift
40 lines
1.1 KiB
Swift
//
|
|
// AppDelegate.swift
|
|
// A2Mac
|
|
//
|
|
// Created by Tamas Rudnai on 7/25/19.
|
|
// Copyright © 2019 GameAlloy. All rights reserved.
|
|
//
|
|
|
|
import Cocoa
|
|
|
|
@NSApplicationMain
|
|
class AppDelegate: NSObject, NSApplicationDelegate {
|
|
|
|
|
|
@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 )
|
|
}
|
|
}
|
|
|
|
@IBAction func Disk1_Selected(_ sender: NSMenuItem) {
|
|
if let menuIdentifier = sender.identifier {
|
|
woz_loadFile( Bundle.main.resourcePath, menuIdentifier.rawValue + ".woz" )
|
|
}
|
|
}
|
|
|
|
func applicationDidFinishLaunching(_ aNotification: Notification) {
|
|
// Insert code here to initialize your application
|
|
}
|
|
|
|
func applicationWillTerminate(_ aNotification: Notification) {
|
|
// Insert code here to tear down your application
|
|
}
|
|
|
|
|
|
}
|
|
|