mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-23 18:31:53 +00:00
21 lines
480 B
Objective-C
21 lines
480 B
Objective-C
//
|
|
// Atari2600.h
|
|
// Clock Signal
|
|
//
|
|
// Created by Thomas Harte on 14/07/2015.
|
|
// Copyright © 2015 Thomas Harte. All rights reserved.
|
|
//
|
|
|
|
#include "CSMachine.h"
|
|
#include "Atari2600Inputs.h"
|
|
|
|
@interface CSAtari2600 : CSMachine
|
|
|
|
- (void)setROM:(nonnull NSData *)rom;
|
|
- (void)setState:(BOOL)state forDigitalInput:(Atari2600DigitalInput)digitalInput;
|
|
- (void)setResetLineEnabled:(BOOL)enabled;
|
|
|
|
- (void)drawViewForPixelSize:(CGSize)pixelSize onlyIfDirty:(BOOL)onlyIfDirty;
|
|
|
|
@end
|