prepare for custom chip clock rates
This commit is contained in:
parent
ae86cd420d
commit
b647d17b12
|
|
@ -453,6 +453,18 @@ class DivDispatch {
|
||||||
*/
|
*/
|
||||||
virtual bool getWantPreNote();
|
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.
|
* set the chip flags.
|
||||||
* @param flags a DivConfig containing chip flags.
|
* @param flags a DivConfig containing chip flags.
|
||||||
|
|
|
||||||
|
|
@ -97,6 +97,14 @@ bool DivDispatch::getWantPreNote() {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
unsigned int DivDispatch::getClockRangeMin() {
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
unsigned int DivDispatch::getClockRangeMax() {
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
void DivDispatch::setFlags(const DivConfig& flags) {
|
void DivDispatch::setFlags(const DivConfig& flags) {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue