We've just updated MediaWiki and its underlying software. If anything doesn't look or work quite right, please mention it to us. --RanAS

Pipeline: Difference between revisions

From SnesLab
Jump to: navigation, search
(asm category)
(bullet points)
 
(4 intermediate revisions by the same user not shown)
Line 1: Line 1:
'''Pipelining''' is a feature of 65x processors to increase throughput.
When finishing up an [[ADC]] instruction for example, these two things are happening simultaneously:
* opcode fetch for the next instruction
* the [[internal cycle]] of putting the sum into the accumulator.
=== See Also ===
=== See Also ===
* [[Super_FX#Pipeline_Processing]]
* [[Super_FX#Pipeline_Processing]]


=== Reference ===
=== Reference ===
* [[Eyes & Lichty]] page 40, https://archive.org/details/0893037893ProgrammingThe65816/page/n66
* [[Eyes & Lichty]], [https://archive.org/details/0893037893ProgrammingThe65816/page/40 page 40]


[[Category:SNES Hardware]]
[[Category:SNES Hardware]]
[[Category:ASM]]
[[Category:ASM]]

Latest revision as of 17:50, 22 October 2024

Pipelining is a feature of 65x processors to increase throughput.

When finishing up an ADC instruction for example, these two things are happening simultaneously:

  • opcode fetch for the next instruction
  • the internal cycle of putting the sum into the accumulator.

See Also

Reference