2016-01-04 23:16:37 -05:00
|
|
|
//
|
|
|
|
// CSElectron.h
|
|
|
|
// Clock Signal
|
|
|
|
//
|
|
|
|
// Created by Thomas Harte on 04/01/2016.
|
|
|
|
// Copyright © 2016 Thomas Harte. All rights reserved.
|
|
|
|
//
|
|
|
|
|
2016-06-11 11:50:37 -04:00
|
|
|
#import "CSMachine.h"
|
2016-06-05 08:53:05 -04:00
|
|
|
#import "CSKeyboardMachine.h"
|
2016-07-04 19:19:07 -04:00
|
|
|
#import "CSFastLoading.h"
|
2016-01-04 23:16:37 -05:00
|
|
|
|
2016-08-31 22:03:42 -04:00
|
|
|
@class CSStaticAnalyser;
|
|
|
|
|
2016-07-04 19:19:07 -04:00
|
|
|
@interface CSElectron : CSMachine <CSKeyboardMachine, CSFastLoading>
|
2016-01-04 23:16:37 -05:00
|
|
|
|
2016-01-06 23:14:36 -05:00
|
|
|
- (void)setOSROM:(nonnull NSData *)rom;
|
|
|
|
- (void)setBASICROM:(nonnull NSData *)rom;
|
2016-01-12 22:34:26 -05:00
|
|
|
- (void)setROM:(nonnull NSData *)rom slot:(int)slot;
|
2016-08-28 12:43:17 -04:00
|
|
|
|
2016-03-13 17:39:53 -04:00
|
|
|
@property (nonatomic, assign) BOOL useFastLoadingHack;
|
2016-04-18 08:21:00 -04:00
|
|
|
@property (nonatomic, assign) BOOL useTelevisionOutput;
|
2016-03-13 17:39:53 -04:00
|
|
|
|
2016-01-04 23:16:37 -05:00
|
|
|
@end
|