2015-07-16 20:40:46 -04:00
|
|
|
//
|
|
|
|
// Atari2600.h
|
|
|
|
// Clock Signal
|
|
|
|
//
|
|
|
|
// Created by Thomas Harte on 14/07/2015.
|
|
|
|
// Copyright © 2015 Thomas Harte. All rights reserved.
|
|
|
|
//
|
|
|
|
|
2016-01-04 23:12:47 -05:00
|
|
|
#include "CSMachine.h"
|
2016-01-04 23:16:37 -05:00
|
|
|
#include "Atari2600Inputs.h"
|
2016-10-03 08:01:04 -04:00
|
|
|
#import "CSJoystickMachine.h"
|
2015-07-23 20:45:07 -04:00
|
|
|
|
2016-10-03 08:01:04 -04:00
|
|
|
@interface CSAtari2600 : CSMachine <CSJoystickMachine>
|
2015-07-16 20:40:46 -04:00
|
|
|
|
2015-08-18 20:58:05 -04:00
|
|
|
- (void)setResetLineEnabled:(BOOL)enabled;
|
2015-07-16 20:40:46 -04:00
|
|
|
|
2016-06-19 19:36:34 -04:00
|
|
|
@property (nonatomic, assign) BOOL colourButton;
|
|
|
|
@property (nonatomic, assign) BOOL leftPlayerDifficultyButton;
|
|
|
|
@property (nonatomic, assign) BOOL rightPlayerDifficultyButton;
|
|
|
|
- (void)pressResetButton;
|
|
|
|
- (void)pressSelectButton;
|
|
|
|
|
2015-07-16 20:40:46 -04:00
|
|
|
@end
|