mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-04 22:58:29 +08:00
Added definitions for opcodes f8b0-f8b5.
This commit is contained in:
parent
03616bc890
commit
d5c72152e8
@ -2600,6 +2600,72 @@ opcodes:
|
||||
- type: any
|
||||
access: write
|
||||
|
||||
- code: 0xf8b0
|
||||
mnemonic: read1
|
||||
doc: Reads a 1-byte value from an arbitrary location.
|
||||
params:
|
||||
- type: reg_tup_ref
|
||||
doc: Register to store the result to.
|
||||
reg_tup:
|
||||
- type: byte
|
||||
access: write
|
||||
- type: dword
|
||||
doc: Address to read from.
|
||||
|
||||
- code: 0xf8b1
|
||||
mnemonic: read2
|
||||
doc: Reads a 2-byte value from an arbitrary location.
|
||||
params:
|
||||
- type: reg_tup_ref
|
||||
doc: Register to store the result to.
|
||||
reg_tup:
|
||||
- type: word
|
||||
access: write
|
||||
- type: dword
|
||||
doc: Address to read from.
|
||||
|
||||
- code: 0xf8b2
|
||||
mnemonic: read4
|
||||
doc: Reads a 4-byte value from an arbitrary location.
|
||||
params:
|
||||
- type: reg_tup_ref
|
||||
doc: Register to store the result to.
|
||||
reg_tup:
|
||||
- type: dword
|
||||
access: write
|
||||
- type: dword
|
||||
doc: Address to read from.
|
||||
|
||||
- code: 0xf8b3
|
||||
mnemonic: write1
|
||||
doc: Writes a 1-byte value to an arbitrary location.
|
||||
params:
|
||||
- type: dword
|
||||
doc: Address to write to.
|
||||
- type: byte
|
||||
doc: Value to be written.
|
||||
stack: pop
|
||||
|
||||
- code: 0xf8b4
|
||||
mnemonic: write2
|
||||
doc: Writes a 2-byte value to an arbitrary location.
|
||||
params:
|
||||
- type: dword
|
||||
doc: Address to write to.
|
||||
- type: word
|
||||
doc: Value to be written.
|
||||
stack: pop
|
||||
|
||||
- code: 0xf8b5
|
||||
mnemonic: write4
|
||||
doc: Writes a 4-byte value to an arbitrary location.
|
||||
params:
|
||||
- type: dword
|
||||
doc: Address to write to.
|
||||
- type: dword
|
||||
doc: Value to be written.
|
||||
stack: pop
|
||||
|
||||
- code: 0xf8b9
|
||||
mnemonic: chl_recovery
|
||||
params: []
|
||||
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user