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.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import <Foundation/Foundation.h>
|
2015-07-26 15:25:11 -04:00
|
|
|
#import "CSCathodeRayView.h"
|
2015-07-23 20:45:07 -04:00
|
|
|
|
2015-07-16 20:40:46 -04:00
|
|
|
@interface CSAtari2600 : NSObject
|
|
|
|
|
2015-07-27 21:15:10 -04:00
|
|
|
@property (nonatomic, weak) CSCathodeRayView *view;
|
2015-07-23 20:45:07 -04:00
|
|
|
|
2015-07-16 20:40:46 -04:00
|
|
|
- (void)runForNumberOfCycles:(int)cycles;
|
|
|
|
- (void)setROM:(NSData *)rom;
|
|
|
|
|
|
|
|
@end
|