1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-09 21:29:53 +00:00
CLK/Components/AY38910/AY38910.hpp

36 lines
649 B
C++

//
// AY-3-8910.hpp
// Clock Signal
//
// Created by Thomas Harte on 14/10/2016.
// Copyright © 2016 Thomas Harte. All rights reserved.
//
#ifndef AY_3_8910_hpp
#define AY_3_8910_hpp
#include "../../Outputs/Speaker.hpp"
namespace GI {
class AY38910: public ::Outputs::Filter<AY38910> {
public:
AY38910();
void get_samples(unsigned int number_of_samples, int16_t *target);
void skip_samples(unsigned int number_of_samples);
void select_register(uint8_t r);
void set_register_value(uint8_t value);
uint8_t get_register_value();
private:
int _selected_register;
uint8_t _registers[16];
};
};
#endif /* AY_3_8910_hpp */