1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-10-05 08:55:36 +00:00
CLK/Machines/Amiga/Audio.cpp

28 lines
401 B
C++
Raw Normal View History

2021-11-09 12:11:23 +00:00
//
// Audio.cpp
// Clock Signal
//
// Created by Thomas Harte on 09/11/2021.
// Copyright © 2021 Thomas Harte. All rights reserved.
//
#include "Audio.hpp"
using namespace Amiga;
bool Audio::advance(int) {
return false;
}
void Audio::set_length(int, uint16_t) {
}
void Audio::set_period(int, uint16_t) {
}
void Audio::set_volume(int, uint16_t) {
}
void Audio::set_data(int, uint16_t) {
}