1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-16 22:28:57 +00:00
CLK/OSBindings/Mac/Clock Signal/Wrappers/CSAtari2600.h

21 lines
464 B
C
Raw Normal View History

//
// Atari2600.h
// Clock Signal
//
// Created by Thomas Harte on 14/07/2015.
// Copyright © 2015 Thomas Harte. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "CSCathodeRayView.h"
#include "Atari2600Inputs.h"
#include "CSMachine.h"
@interface CSAtari2600 : CSMachine
- (void)setROM:(nonnull NSData *)rom;
- (void)setState:(BOOL)state forDigitalInput:(Atari2600DigitalInput)digitalInput;
2015-08-19 00:58:05 +00:00
- (void)setResetLineEnabled:(BOOL)enabled;
@end