YM2610 timers: Difference between revisions
Jump to navigation
Jump to search
(Created page with "The {{Chipname|YM2610}} provides 2 timers (called A and B), used to time music playback by triggering Z80 interrupts. The timer A is 10 bits wide, the timer B is only 8 b...") |
mNo edit summary |
||
Line 24: | Line 24: | ||
|- | |- | ||
|$27 | |$27 | ||
|{{8BitRegister|CSM mode|1| | |{{8BitRegister|CSM mode|1|2CH mode|1|Flag reset TB|1|Flag reset TA|1|Enable TB IRQ|1|Enable TA IRQ|1|Load TB|1|Load TA|1}} | ||
|} | |} | ||
Line 39: | Line 39: | ||
* Flag reset refers to the same flags that are read from port $04 | * Flag reset refers to the same flags that are read from port $04 | ||
* 2CH mode allows each of FM channel 2 operators to run at their own frequency. | |||
* CSM mode is for automatic key-on for operators of the second FM channel when timer A expires ? | * CSM mode is for automatic key-on for operators of the second FM channel when timer A expires ? | ||
[[Category:Audio system]] | [[Category:Audio system]] | ||
[[Category:Code]] | [[Category:Code]] |
Revision as of 14:12, 19 June 2017
The YM2610 provides 2 timers (called A and B), used to time music playback by triggering Z80 interrupts.
The timer A is 10 bits wide, the timer B is only 8 bits wide.
Ranges
- Timer A: 8M / 2 / 144 (prescaler) / (load value - 1): 27.18Hz ~ 27.8kHz ?
- Timer B: 8M / 16384 / (load value - 1): 1.922Hz ~ 448.3Hz
Registers
Address (Z80 port 4) | Data (Z80 port 5) | ||||||||||||||||||
$24 |
| ||||||||||||||||||
$25 |
| ||||||||||||||||||
$26 |
| ||||||||||||||||||
$27 |
|
Operation
The timers are decremented at regular intervals until they reach 0, at which point an interrupt will be generated (if enabled). The timer which caused the interrupt can be known by reading port $04.
When a timer expires, it is automatically reloaded. If interrupts are enabled, care must be taken to clear the appropriate flag(s) so that they can be triggered again.
The actual counters aren't accessible, only their load value can be written.
- Writing 0 to the load bits in register $27 will reset the timer counters to zero.
- Writing 1 to the load bits will copy the respective timer load value to the timer counter. This only works when the counter is at zero.
- Flag reset refers to the same flags that are read from port $04
- 2CH mode allows each of FM channel 2 operators to run at their own frequency.
- CSM mode is for automatic key-on for operators of the second FM channel when timer A expires ?