mirror of
https://github.com/TomHarte/CLK.git
synced 2025-02-20 14:29:11 +00:00
17 lines
291 B
C
17 lines
291 B
C
|
//
|
||
|
// Atari2600.h
|
||
|
// Clock Signal
|
||
|
//
|
||
|
// Created by Thomas Harte on 14/07/2015.
|
||
|
// Copyright © 2015 Thomas Harte. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import <Foundation/Foundation.h>
|
||
|
|
||
|
@interface CSAtari2600 : NSObject
|
||
|
|
||
|
- (void)runForNumberOfCycles:(int)cycles;
|
||
|
- (void)setROM:(NSData *)rom;
|
||
|
|
||
|
@end
|