mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-04 15:05:36 +00:00
24 lines
561 B
Objective-C
24 lines
561 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"
|
|
#import "CSJoystickMachine.h"
|
|
|
|
@interface CSAtari2600 : CSMachine <CSJoystickMachine>
|
|
|
|
- (void)setResetLineEnabled:(BOOL)enabled;
|
|
|
|
@property (nonatomic, assign) BOOL colourButton;
|
|
@property (nonatomic, assign) BOOL leftPlayerDifficultyButton;
|
|
@property (nonatomic, assign) BOOL rightPlayerDifficultyButton;
|
|
- (void)pressResetButton;
|
|
- (void)pressSelectButton;
|
|
|
|
@end
|