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

PCALL (SPC700): Difference between revisions

From SnesLab
Jump to: navigation, search
(lowercase up)
(removed comma in category)
 
(One intermediate revision by the same user not shown)
Line 48: Line 48:
=== See Also ===
=== See Also ===
* [[TCALL]]
* [[TCALL]]
* [[RET]]
* [[JSR]]
* [[JSR]]


Line 58: Line 59:
[[Category:ASM]]
[[Category:ASM]]
[[Category:SPC700]]
[[Category:SPC700]]
[[Category:Subroutine Call, Return Commands]]
[[Category:Subroutine Call Return Commands]]
[[Category:Two-byte Instructions]]
[[Category:Two-byte Instructions]]

Latest revision as of 21:55, 10 August 2024

Basic Info
Addressing Mode Opcode Length Speed
Uppermost Page 4F 2 bytes 6 cycles
Flags Affected
N V P B H I Z C
. . . . . . . .

PCALL (uPage CALl) is an SPC700 instruction that runs a subroutine in the uppermost page. The operand specifies the low byte of the target address within the uppermost page.

No flags are affected.

Syntax

PCALL upage

PCALL $xx has the same effect as CALL $FFxx.[2]

See Also

External Links

  1. Official Nintendo documentation on PCALL: Table C-16 Appendix C-9 of Book I
  2. https://forums.nesdev.org/viewtopic.php?t=13313
  3. https://github.com/yupferris/TasmShiz/blob/master/spc700.txt#L534