Difference between revisions of "FF7/Field/Script/Opcodes/18 IFUW"

From QhimmWiki
Jump to navigation Jump to search
Qhimm>Synergy Blades
Qhimm>Synergy Blades
m
Line 6: Line 6:
{| border="1" cellspacing="1" cellpadding="3" style="border: 1px solid black; border-collapse: collapse;"
{| border="1" cellspacing="1" cellpadding="3" style="border: 1px solid black; border-collapse: collapse;"
! width="40" | 0x18
! width="40" | 0x18
! width="40" | ''B''
! width="40" | ''B / 0''
! width="40" | ''A''
! width="40" | ''A''
! width="40" | ''V''
! width="40" | ''V''
Line 15: Line 15:
==== Arguments ====
==== Arguments ====


* '''const UByte''' ''B'': Memory bank to access.
* '''const Bit[4]''' ''B'': Memory bank to access.
* '''const Bit[4]''' ''0'': Zero.
* '''const UShort''' ''A'': Address of the value to retrieve.
* '''const UShort''' ''A'': Address of the value to retrieve.
* '''const UShort''' ''V'': Unsigned value to compare the retrieved value to.
* '''const UShort''' ''V'': Unsigned value to compare the retrieved value to.

Revision as of 00:25, 25 August 2006

  • Opcode: 0x18
  • Short name: IFUW
  • Long name: If (Unsigned Word)

Memory layout

0x18 B / 0 A V C E

Arguments

  • const Bit[4] B: Memory bank to access.
  • const Bit[4] 0: Zero.
  • const UShort A: Address of the value to retrieve.
  • const UShort V: Unsigned value to compare the retrieved value to.
  • const UByte C: Type of comparison to perform.
  • const UByte E: Amount to jump if the comparison does not hold.

Description

This is similar to the IFUB opcode, but it allows both address and value to be larger than 0xFF.