mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-03 08:05:40 +00:00
26 lines
629 B
Objective-C
26 lines
629 B
Objective-C
//
|
|
// CSElectron.h
|
|
// Clock Signal
|
|
//
|
|
// Created by Thomas Harte on 04/01/2016.
|
|
// Copyright © 2016 Thomas Harte. All rights reserved.
|
|
//
|
|
|
|
#import "CSMachine.h"
|
|
#import "CSKeyboardMachine.h"
|
|
#import "CSFastLoading.h"
|
|
|
|
@interface CSElectron : CSMachine <CSKeyboardMachine, CSFastLoading>
|
|
|
|
- (void)setOSROM:(nonnull NSData *)rom;
|
|
- (void)setBASICROM:(nonnull NSData *)rom;
|
|
- (void)setROM:(nonnull NSData *)rom slot:(int)slot;
|
|
- (BOOL)openUEFAtURL:(nonnull NSURL *)URL;
|
|
|
|
- (void)analyse:(nonnull NSURL *)url;
|
|
|
|
@property (nonatomic, assign) BOOL useFastLoadingHack;
|
|
@property (nonatomic, assign) BOOL useTelevisionOutput;
|
|
|
|
@end
|