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

DECW (SPC700): Difference between revisions

From SnesLab
Jump to: navigation, search
(improve description)
(made flags affected more prominent)
 
(12 intermediate revisions by the same user not shown)
Line 1: Line 1:
'''DECW''' is an [[SPC700]] command that decrements a 16-bit word of the [[direct page]].
{| class="wikitable" style="float:right;clear:right;width:40%"
 
{| class="wikitable" style="float:right;clear:right;width:30%"
!colspan="8"|Basic Info
!colspan="8"|Basic Info
|+
|+
Line 9: Line 7:
|'''Speed'''
|'''Speed'''
|+
|+
|direct page
|[[Direct Page Addressing | Direct Page]]
|1A
|1A
|2 bytes
|2 bytes
Line 16: Line 14:


{| class="wikitable" style="float:right;clear:right;width:30%"
{| class="wikitable" style="float:right;clear:right;width:30%"
!colspan="8"|Flags Clobbered
!colspan="8"|Flags Affected
|+
|[[Negative Flag|N]]
|[[Overflow Flag|V]]
|[[Direct Page Flag|P]]
|[[Break Flag|B]]
|[[Half-Carry Flag|H]]
|[[Interrupt Enable Flag|I]]
|[[Zero Flag|Z]]
|[[Carry Flag|C]]
|+
|+
|N
|N
|V
|P
|B
|H
|I
|Z
|C
|+
|
|.
|.
|.
|.
Line 33: Line 31:
|.
|.
|.
|.
|
|Z
|.
|.
|}
|}
'''DECW''' is an [[SPC700]] command that decrements a 16-bit word of the [[direct page]].
==== Syntax ====
<pre>
DECW dp
</pre>
=== See Also ===
* [[INCW]]
* [[MOVW]]
* [[DEC (SPC700)]]
* [[DEC]]
* [[Memory Pair]]


=== External Links ===
=== External Links ===
* Official Super Nintendo development manual on DECW: [https://archive.org/details/SNESDevManual/book1/page/n233 Appendix C-8 of Book I]
* Official Super Nintendo development manual on DECW: Table C-12 in [https://archive.org/details/SNESDevManual/book1/page/n233 Appendix C-8 of Book I]
* anomie: https://github.com/yupferris/TasmShiz/blob/master/spc700.txt#L422


[[Category:ASM]]
[[Category:ASM]]
[[Category:SPC700]]
[[Category:SPC700]]
[[Category:16-bit Operation Commands]]
[[Category:16-bit Operation Commands]]
[[Category:Two-byte Instructions]]

Latest revision as of 12:23, 30 July 2024

Basic Info
Addressing Mode Opcode Length Speed
Direct Page 1A 2 bytes 6 cycles
Flags Affected
N V P B H I Z C
N . . . . . Z .

DECW is an SPC700 command that decrements a 16-bit word of the direct page.

Syntax

DECW dp

See Also

External Links