mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-03 08:05:40 +00:00
22 lines
578 B
Objective-C
22 lines
578 B
Objective-C
//
|
|
// CSMachine+Subclassing.h
|
|
// Clock Signal
|
|
//
|
|
// Created by Thomas Harte on 04/01/2016.
|
|
// Copyright © 2016 Thomas Harte. All rights reserved.
|
|
//
|
|
|
|
#import "CSMachine.h"
|
|
#include "CRT.hpp"
|
|
#include "Speaker.hpp"
|
|
|
|
@interface CSMachine (Subclassing)
|
|
|
|
- (BOOL)setSpeakerDelegate:(Outputs::Speaker::Delegate *)delegate sampleRate:(int)sampleRate;
|
|
- (void)speaker:(Outputs::Speaker *)speaker didCompleteSamples:(const int16_t *)samples length:(int)length;
|
|
- (void)performAsync:(dispatch_block_t)action;
|
|
- (void)performSync:(dispatch_block_t)action;
|
|
- (void)setupOutput;
|
|
|
|
@end
|