YM2610 timers

From NeoGeo Development Wiki
Jump to navigation Jump to search

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 interval: 72*(1024-value)/4M : 18µs to 18432µs (55.56kHz to 54.25Hz)
  • Timer B interval: 1152*(256-value)/4M : 288µs to 73.728ms (3.47kHz to 13.56Hz)
  • Smaller value = longer interval !

Registers

Address (Z80 port 4) Data (Z80 port 5)
$24
Bit 7 6 5 4 3 2 1 0
Def TA counter load bits MSBs
$25
Bit 7 6 5 4 3 2 1 0
Def - TA counter load bits LSBs
$26
Bit 7 6 5 4 3 2 1 0
Def TB counter load
$27
Bit 7 6 5 4 3 2 1 0
Def CSM mode 2CH modeFlag reset TBFlag reset TAEnable TB IRQEnable TA IRQLoad TBLoad TA

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 ?