mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-02 16:04:59 +00:00
36 lines
673 B
Objective-C
36 lines
673 B
Objective-C
//
|
|
// CSVic20.h
|
|
// Clock Signal
|
|
//
|
|
// Created by Thomas Harte on 04/06/2016.
|
|
// Copyright © 2016 Thomas Harte. All rights reserved.
|
|
//
|
|
|
|
#import "CSMachine.h"
|
|
#import "CSFastLoading.h"
|
|
|
|
typedef NS_ENUM(NSInteger, CSVic20Country)
|
|
{
|
|
CSVic20CountryAmerican,
|
|
CSVic20CountryDanish,
|
|
CSVic20CountryEuropean,
|
|
CSVic20CountryJapanese,
|
|
CSVic20CountrySwedish
|
|
};
|
|
|
|
typedef NS_ENUM(NSInteger, CSVic20MemorySize)
|
|
{
|
|
CSVic20MemorySize5Kb,
|
|
CSVic20MemorySize8Kb,
|
|
CSVic20MemorySize32Kb,
|
|
};
|
|
|
|
@interface CSVic20 : CSMachine <CSFastLoading>
|
|
|
|
- (instancetype)init;
|
|
|
|
@property (nonatomic, assign) CSVic20Country country;
|
|
@property (nonatomic, assign) CSVic20MemorySize memorySize;
|
|
|
|
@end
|