68k interrupts: Difference between revisions

From NeoGeo Development Wiki
Jump to navigation Jump to search
mNo edit summary
m (Changed wording, clarification regarding irq mask)
(12 intermediate revisions by 3 users not shown)
Line 1: Line 1:
There are 3 interrupt levels on the AES and MVS. Only 2 on the CD hardware.
The cartridge systems use 3 '''auto-vectored''' interrupt levels. The CD systems use 3 additional '''vectored''' interrupts.


Interrupts need to be acknowledged by writing to register $3C000C (REG_IRQACK).
Interrupts must to be acknowledged for them to re-trigger in the future by writing to register {{Reg|REG_IRQACK}}.
*bit2: Ack VBlank
*bit 2: Acknowledge v-blank interrupt
*bit1: Ack RLI
*bit 1: Acknowledge [[timer interrupt]]
*bit0: Ack level 3
*bit 0: Acknowledge reset interrupt


<pre>
Multiple bits can be set:
move #$0007,REG_IRQACK    ; Acknowledges all interrupts
<syntaxhighlight>
</pre>
move #$0007,REG_IRQACK    ; Acknowledge all interrupts
</syntaxhighlight>


Bits 8~10 of the SR register are used to mask them. $2000 enables them all, $2700 disables them.
Bits 8~10 of the [[68k]]'s SR register can be used to mask them:
<syntaxhighlight>
move #$2000,SR    ; Accept all interrupts (+Supervisor mode)
move #$2700,SR    ; Ignore all interrupts (+Supervisor mode)
</syntaxhighlight>


== Vertical Blank Interrupt ==
Note that the 68k's interrupt mask is different from the interrupt configuration bits in {{Reg|REG_LSPCMODE}}.


VBlank interrupt is almost always used. It occurs everytime a new frame is traced (~60Hz).
=Vertical blank interrupt=


== Raster Line Interrupt ==
The v-blank interrupt is almost always used. It occurs when the rendering of a frame is about to start (~60 times per second). See [[display timing]].


The RLI interrupt's behavior can be programmed through memory mapped registers. It's made to occur at (the start/end ? of) specific horizontal lines of the video output. See the Sammy logo at the start of [[Viewpoint]] for an example of its use. [[Sengoku 3]] and [[Neo Turf Masters]] are also known to rely on them to do [[scanline effets]].
=[[Timer interrupt]]=


== AES/MVS interrupts ==
The timer interrupt's behavior can be programmed through the [[GPU]]'s [[memory mapped registers]]. It is triggered by a 32-bit down counter clocked by the 6MHz pixel clock, and a corresponding reset register. When the counter reaches 0, an interrupt is generated. Intervals can range from 166.7ns ('''dangerous interrupt flood''') to 11.9 minutes (?).


*VBlank: 0
It can be used for special video effects such as [[scanline effects]], for example:
*RLI: 1
* The interlaced Sammy logo in [[Viewpoint]]
*Pending at startup ?: 2
* [[Sengoku 2]]'s intro
* The road in [[Riding hero]]
* [[Neo Turf Masters]]'s ground perspective
* ...


== CD interrupts ==
=AES/MVS interrupt levels=


*VBlank: 1
*Level 1: V-blank
*RLI: 0
*Level 2: Timer
*Level 3: Pending after reset


[[Category:CPUs]]
=CD interrupt levels=
 
The V-blank and Timer levels '''are swapped''' compared to the cartridge systems.
 
*Level 1: Timer
*Level 2: V-blank
*Level 3: Not used ?
*Vector 21: CD host decoder interrupt (data ready)
*Vector 22: CD drive communication start
*Vector 23: Used but not understood
 
[[Category:Base system]]
[[Category:Code]]
[[Category:Code]]

Revision as of 06:58, 11 October 2018

The cartridge systems use 3 auto-vectored interrupt levels. The CD systems use 3 additional vectored interrupts.

Interrupts must to be acknowledged for them to re-trigger in the future by writing to register REG_IRQACK.

  • bit 2: Acknowledge v-blank interrupt
  • bit 1: Acknowledge timer interrupt
  • bit 0: Acknowledge reset interrupt

Multiple bits can be set:

move	#$0007,REG_IRQACK     ; Acknowledge all interrupts

Bits 8~10 of the 68k's SR register can be used to mask them:

move	#$2000,SR     ; Accept all interrupts (+Supervisor mode)
move	#$2700,SR     ; Ignore all interrupts (+Supervisor mode)

Note that the 68k's interrupt mask is different from the interrupt configuration bits in REG_LSPCMODE.

Vertical blank interrupt

The v-blank interrupt is almost always used. It occurs when the rendering of a frame is about to start (~60 times per second). See display timing.

Timer interrupt

The timer interrupt's behavior can be programmed through the GPU's memory mapped registers. It is triggered by a 32-bit down counter clocked by the 6MHz pixel clock, and a corresponding reset register. When the counter reaches 0, an interrupt is generated. Intervals can range from 166.7ns (dangerous interrupt flood) to 11.9 minutes (?).

It can be used for special video effects such as scanline effects, for example:

AES/MVS interrupt levels

  • Level 1: V-blank
  • Level 2: Timer
  • Level 3: Pending after reset

CD interrupt levels

The V-blank and Timer levels are swapped compared to the cartridge systems.

  • Level 1: Timer
  • Level 2: V-blank
  • Level 3: Not used ?
  • Vector 21: CD host decoder interrupt (data ready)
  • Vector 22: CD drive communication start
  • Vector 23: Used but not understood