Difference between revisions of "FF7/Field/Script/Opcodes/84 BITXOR"

From Final Fantasy Inside
< FF7‎ | Field‎ | Script‎ | Opcodes
Jump to navigation Jump to search
my_wiki>Halkun
 
m (3 revisions imported)
 
(2 intermediate revisions by 2 users not shown)
Line 15: Line 15:
 
* '''const Bit[4]''' ''S'': Source bank.
 
* '''const Bit[4]''' ''S'': Source bank.
 
* '''const UByte''' ''Dest'': Destination address.
 
* '''const UByte''' ''Dest'': Destination address.
* '''const Short''' ''Bit'':The number of the bit to turn toggle.
+
* '''const UByte''' ''Bit'': The number of the bit to turn toggle.
  
 
==== Description ====
 
==== Description ====

Latest revision as of 05:17, 23 May 2019

  • Opcode: 0x84
  • Short name: BITXOR
  • Long name: Toggle Bit

Memory layout

0x84 D / S Dest Bit

Arguments

  • const Bit[4] D: Destination bank.
  • const Bit[4] S: Source bank.
  • const UByte Dest: Destination address.
  • const UByte Bit: The number of the bit to turn toggle.

Description

Toggles the nth bit in the "Dest" location, where n is a number between 0-7 supplied in "Bit". A value of zero in "Bit" will toggle the least significant bit. If the Source Bank is 0 then the bit to be changed is taken from "Bit". If the Source Bank is an 8 bit bank, then the “Bit” is the address in that bank where the operand is.