mirror of
https://github.com/tildearrow/furnace.git
synced 2024-11-23 13:05:11 +00:00
prepare for custom chip clock rates
This commit is contained in:
parent
ae86cd420d
commit
b647d17b12
2 changed files with 20 additions and 0 deletions
|
@ -453,6 +453,18 @@ class DivDispatch {
|
|||
*/
|
||||
virtual bool getWantPreNote();
|
||||
|
||||
/**
|
||||
* get minimum chip clock.
|
||||
* @return clock in Hz, or 0 if custom clocks are not supported.
|
||||
*/
|
||||
virtual unsigned int getClockRangeMin();
|
||||
|
||||
/**
|
||||
* get maximum chip clock.
|
||||
* @return clock in Hz, or 0 if custom clocks are not supported.
|
||||
*/
|
||||
virtual unsigned int getClockRangeMax();
|
||||
|
||||
/**
|
||||
* set the chip flags.
|
||||
* @param flags a DivConfig containing chip flags.
|
||||
|
|
|
@ -97,6 +97,14 @@ bool DivDispatch::getWantPreNote() {
|
|||
return false;
|
||||
}
|
||||
|
||||
unsigned int DivDispatch::getClockRangeMin() {
|
||||
return 0;
|
||||
}
|
||||
|
||||
unsigned int DivDispatch::getClockRangeMax() {
|
||||
return 0;
|
||||
}
|
||||
|
||||
void DivDispatch::setFlags(const DivConfig& flags) {
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue