Difference between revisions of "FF7/Field/Script/Opcodes/9B HBYTE"
Jump to navigation
Jump to search
my_wiki>Synergy Blades m |
m (5 revisions imported) |
||
(2 intermediate revisions by 2 users not shown) | |||
Line 8: | Line 8: | ||
! width="40" | ''D / S'' | ! width="40" | ''D / S'' | ||
! width="40" | ''DA'' | ! width="40" | ''DA'' | ||
− | ! width=" | + | ! width="80" | ''SA'' |
− | |||
|} | |} | ||
Line 17: | Line 16: | ||
* '''const Bit[4]''' ''S'': Source bank. | * '''const Bit[4]''' ''S'': Source bank. | ||
* '''const UByte''' ''DA'': Destination address. | * '''const UByte''' ''DA'': Destination address. | ||
− | * '''const | + | * '''const UShort''' ''SA'': Source address, ''or'' the word given as a literal, if source bank is zero. |
− | |||
==== Description ==== | ==== Description ==== | ||
Retrieves the high byte of a two-byte word from the source bank and address, and places the byte value into the destination bank and address. If the source bank is zero, then the final two arguments are actually a given two-byte word value, and the high byte value is retrieved from this word instead of from a memory address. | Retrieves the high byte of a two-byte word from the source bank and address, and places the byte value into the destination bank and address. If the source bank is zero, then the final two arguments are actually a given two-byte word value, and the high byte value is retrieved from this word instead of from a memory address. |
Latest revision as of 05:18, 23 May 2019
- Opcode: 0x9B
- Short name: HBYTE
- Long name: High Byte
Memory layout
0x9B | D / S | DA | SA |
---|
Arguments
- const Bit[4] D: Destination bank.
- const Bit[4] S: Source bank.
- const UByte DA: Destination address.
- const UShort SA: Source address, or the word given as a literal, if source bank is zero.
Description
Retrieves the high byte of a two-byte word from the source bank and address, and places the byte value into the destination bank and address. If the source bank is zero, then the final two arguments are actually a given two-byte word value, and the high byte value is retrieved from this word instead of from a memory address.