mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-08 10:07:25 +00:00
19 lines
401 B
Objective-C
19 lines
401 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"
|
|
|
|
@interface CSAtari2600 : CSMachine
|
|
|
|
- (void)setROM:(nonnull NSData *)rom;
|
|
- (void)setState:(BOOL)state forDigitalInput:(Atari2600DigitalInput)digitalInput;
|
|
- (void)setResetLineEnabled:(BOOL)enabled;
|
|
|
|
@end
|