mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-23 18:31:53 +00:00
24 lines
545 B
Objective-C
24 lines
545 B
Objective-C
//
|
|
// CSElectron.h
|
|
// Clock Signal
|
|
//
|
|
// Created by Thomas Harte on 04/01/2016.
|
|
// Copyright © 2016 Thomas Harte. All rights reserved.
|
|
//
|
|
|
|
#include "CSMachine.h"
|
|
#import "KeyCodes.h"
|
|
|
|
@interface CSElectron : CSMachine
|
|
|
|
- (void)setOSROM:(nonnull NSData *)rom;
|
|
- (void)setBASICROM:(nonnull NSData *)rom;
|
|
- (void)setROM:(nonnull NSData *)rom slot:(int)slot;
|
|
- (BOOL)openUEFAtURL:(nonnull NSURL *)URL;
|
|
|
|
- (void)setKey:(uint16_t)key isPressed:(BOOL)isPressed;
|
|
|
|
- (void)drawViewForPixelSize:(CGSize)pixelSize onlyIfDirty:(BOOL)onlyIfDirty;
|
|
|
|
@end
|