From fba6ac3e10f7f21602f81781f0cc340cd3cf3671 Mon Sep 17 00:00:00 2001 From: Daan Vanden Bosch Date: Sat, 3 Aug 2019 23:23:55 +0200 Subject: [PATCH] Created yaml file with opcode definitions (70% complete). --- FEATURES.md | 5 + .../resources/scripting/opcodes.schema.json | 112 + .../resources/scripting/opcodes.yml | 3145 +++++ src/data_formats/parsing/quest/bin.ts | 4 +- src/data_formats/parsing/quest/opcodes.ts | 10766 +++++++++------- src/scripting/assembly.ts | 6 +- .../data_flow_analysis/ControlFlowGraph.ts | 273 +- src/scripting/data_flow_analysis/ValueSet.ts | 10 + .../register_values.test.ts | 38 +- .../data_flow_analysis/register_values.ts | 93 +- src/scripting/disassembly.ts | 2 +- 11 files changed, 9348 insertions(+), 5106 deletions(-) create mode 100644 assets_generation/resources/scripting/opcodes.schema.json create mode 100644 assets_generation/resources/scripting/opcodes.yml diff --git a/FEATURES.md b/FEATURES.md index b5d78839..47740d8b 100644 --- a/FEATURES.md +++ b/FEATURES.md @@ -116,8 +116,13 @@ Features that are in ***bold italics*** are planned and not yet implemented. - ***Figure out how they work*** +## Non-BlueBurst Support + +- Support different sets of instructions (older versions had no stack) + ## Bugs +- [Script Object Code](#script-object-code): Correctly deal with stack arguments (e.g. when a function expects a u32, pushing a u8, u16, u32 or register value is ok) (when a function expects a register reference, arg_pushb should be used) - [3D View](#3d-view): Random Type Box 1 and Fixed Type Box objects aren't rendered correctly - [3D View](#3d-view): Some objects are only partially loaded (they consist of several seperate models) - Forest Switch diff --git a/assets_generation/resources/scripting/opcodes.schema.json b/assets_generation/resources/scripting/opcodes.schema.json new file mode 100644 index 00000000..6e20a42a --- /dev/null +++ b/assets_generation/resources/scripting/opcodes.schema.json @@ -0,0 +1,112 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "title": "Phantasy Star Online Instruction Set", + "type": "object", + "required": ["opcodes"], + "additionalProperties": false, + "properties": { + "opcodes": { + "type": "array", + "description": "List of every known opcode.", + "items": { + "$ref": "#/definitions/opcode" + } + } + }, + "definitions": { + "opcode": { + "type": "object", + "required": ["code", "params"], + "additionalProperties": false, + "properties": { + "code": { + "type": "integer", + "minimum": 0, + "maximum": 63999, + "description": "Unique byte representation of the opcode." + }, + "mnemonic": { + "type": "string", + "pattern": "^[a-z][a-z0-9=<>!_]+$", + "description": "Unique string representation of the opcode." + }, + "doc": { + "type": "string", + "description": "Opcode documentation." + }, + "params": { + "type": "array", + "description": "Opcode parameters. Whether or not the stack is used is determined by the stack property.", + "items": { + "$ref": "#/definitions/param" + } + }, + "stack": { + "enum": ["push", "pop"], + "description": "Stack interaction. \"push\" if the instruction takes immediate arguments and pushes its arguments onto the stack. \"pop\" if the instruction doesn't take immediate arguments but pops its arguments off the stack." + } + } + }, + "param": { + "type": "object", + "required": ["type"], + "additionalProperties": false, + "properties": { + "type": { + "$ref": "#/definitions/param_type" + }, + "doc": { + "type": "string", + "description": "Parameter-specific documentation." + }, + "access": { + "$ref": "#/definitions/access" + }, + "reg_tup": { + "type": "array", + "minItems": 1, + "description": "Specifies the way the referenced registers will be interpreted. Should only be specified if the parameter type is \"reg_tup_ref\".", + "items": { + "type": "object", + "required": ["type", "access"], + "additionalProperties": false, + "properties": { + "type": { + "$ref": "#/definitions/param_type" + }, + "doc": { + "type": "string" + }, + "access": { + "$ref": "#/definitions/access" + } + } + } + } + } + }, + "param_type": { + "type": "string", + "enum": [ + "any", + "byte", + "word", + "dword", + "float", + "label", + "i_label", + "d_label", + "string", + "reg_ref", + "reg_tup_ref", + "reg_ref_var", + "pointer" + ] + }, + "access": { + "type": "string", + "enum": ["read", "write", "read_write"], + "description": "Specifies the way the instruction accesses the referenced register(s)." + } + } +} diff --git a/assets_generation/resources/scripting/opcodes.yml b/assets_generation/resources/scripting/opcodes.yml new file mode 100644 index 00000000..47114fb9 --- /dev/null +++ b/assets_generation/resources/scripting/opcodes.yml @@ -0,0 +1,3145 @@ +opcodes: + - code: 0x00 + mnemonic: nop + doc: No operation, does nothing. + params: [] + + - code: 0x01 + mnemonic: ret + doc: Returns control to caller. + params: [] + + - code: 0x02 + mnemonic: sync + doc: Yields control for the rest of the current frame. Execution will continue the following frame. + params: [] + + - code: 0x03 + mnemonic: exit + params: + - type: dword + stack: pop + + - code: 0x04 + mnemonic: thread + doc: |- + Starts a new thread. Thread execution will start at the given label. + Often used to check a register every frame. Make sure to yield control with sync when looping. + params: + - type: i_label + + - code: 0x05 + mnemonic: va_start + doc: |- + Initializes a variable argument list. + Make sure to call va_end after va_start and va_call. + params: [] + + - code: 0x06 + mnemonic: va_end + doc: |- + Restores the registers overwritten by arg_push* instructions. + Called after va_call. + params: [] + + - code: 0x07 + mnemonic: va_call + doc: |- + Calls the variable argument function at the given label. + Called after initializing the argument list with va_start and pushing arguments onto the stack with arg_push* instructions. Make sure to call va_end afterwards. + params: + - type: i_label + + - code: 0x08 + mnemonic: let + doc: Sets the first register's value to second one's value. + params: + - type: reg_tup_ref + reg_tup: + - type: dword + access: write + - type: reg_tup_ref + reg_tup: + - type: dword + access: read + + - code: 0x09 + mnemonic: leti + doc: Sets a register to the given value. + params: + - type: reg_tup_ref + reg_tup: + - type: dword + access: write + - type: dword + + - code: 0x0a + mnemonic: letb + doc: Sets a register to the given value. + params: + - type: reg_tup_ref + reg_tup: + - type: byte + access: write + - type: byte + + - code: 0x0b + mnemonic: letw + doc: Sets a register to the given value. + params: + - type: reg_tup_ref + reg_tup: + - type: word + access: write + - type: word + + - code: 0x0c + mnemonic: leta + doc: Sets the first register to the memory address of the second register. Not used by Sega. + params: + - type: reg_tup_ref + reg_tup: + - type: pointer + access: write + - type: reg_tup_ref + reg_tup: + - type: any + access: read + + - code: 0x0d + mnemonic: leto + doc: Sets a register to the memory address of the given label. Not used by Sega. + params: + - type: reg_tup_ref + reg_tup: + - type: pointer + access: write + - type: label + + - code: 0x10 + mnemonic: set + doc: Sets a register to 1. + params: + - type: reg_tup_ref + reg_tup: + - type: dword + access: write + + - code: 0x11 + mnemonic: clear + doc: Sets a register to 0. + params: + - type: reg_tup_ref + reg_tup: + - type: dword + access: write + + - code: 0x12 + mnemonic: rev + doc: Sets a register to 1 if its current value is 0, otherwise sets it to 0. + params: + - type: reg_tup_ref + reg_tup: + - type: dword + access: read_write + + - code: 0x13 + mnemonic: gset + params: + - type: word + + - code: 0x14 + mnemonic: gclear + params: + - type: word + + - code: 0x15 + mnemonic: grev + params: + - type: word + + - code: 0x16 + mnemonic: glet + params: + - type: word + + - code: 0x17 + mnemonic: gget + doc: Sets a register to value of the given flag. + params: + - type: word + - type: reg_tup_ref + reg_tup: + - type: word + access: write + + - code: 0x18 + mnemonic: add + params: + - type: reg_tup_ref + reg_tup: + - type: dword + access: write + - type: reg_tup_ref + reg_tup: + - type: dword + access: read + + - code: 0x19 + mnemonic: addi + params: + - type: reg_tup_ref + reg_tup: + - type: dword + access: write + - type: dword + + - code: 0x1a + mnemonic: sub + params: + - type: reg_tup_ref + reg_tup: + - type: dword + access: write + - type: reg_tup_ref + reg_tup: + - type: dword + access: read + + - code: 0x1b + mnemonic: subi + params: + - type: reg_tup_ref + reg_tup: + - type: dword + access: write + - type: dword + + - code: 0x1c + mnemonic: mul + params: + - type: reg_tup_ref + reg_tup: + - type: dword + access: write + - type: reg_tup_ref + reg_tup: + - type: dword + access: read + + - code: 0x1d + mnemonic: muli + params: + - type: reg_tup_ref + reg_tup: + - type: dword + access: write + - type: dword + + - code: 0x1e + mnemonic: div + params: + - type: reg_tup_ref + reg_tup: + - type: dword + access: write + - type: reg_tup_ref + reg_tup: + - type: dword + access: read + + - code: 0x1f + mnemonic: divi + params: + - type: reg_tup_ref + reg_tup: + - type: dword + access: write + - type: dword + + - code: 0x20 + mnemonic: and + params: + - type: reg_tup_ref + reg_tup: + - type: dword + access: write + - type: reg_tup_ref + reg_tup: + - type: dword + access: read + + - code: 0x21 + mnemonic: andi + params: + - type: reg_tup_ref + reg_tup: + - type: dword + access: write + - type: dword + + - code: 0x22 + mnemonic: or + params: + - type: reg_tup_ref + reg_tup: + - type: dword + access: write + - type: reg_tup_ref + reg_tup: + - type: dword + access: read + + - code: 0x23 + mnemonic: ori + params: + - type: reg_tup_ref + reg_tup: + - type: dword + access: write + - type: dword + + - code: 0x24 + mnemonic: xor + params: + - type: reg_tup_ref + reg_tup: + - type: dword + access: write + - type: reg_tup_ref + reg_tup: + - type: dword + access: read + + - code: 0x25 + mnemonic: xori + params: + - type: reg_tup_ref + reg_tup: + - type: dword + access: write + - type: dword + + - code: 0x26 + mnemonic: mod + params: + - type: reg_tup_ref + reg_tup: + - type: dword + access: write + - type: reg_tup_ref + reg_tup: + - type: dword + access: read + + - code: 0x27 + mnemonic: modi + params: + - type: reg_tup_ref + reg_tup: + - type: dword + access: write + - type: dword + + - code: 0x28 + mnemonic: jmp + params: + - type: i_label + + - code: 0x29 + mnemonic: call + params: + - type: i_label + + - code: 0x2a + mnemonic: jmp_on + params: + - type: i_label + - type: reg_ref_var + access: read + + - code: 0x2b + mnemonic: jmp_off + params: + - type: i_label + - type: reg_ref_var + access: read + + - code: 0x2c + mnemonic: jmp_= + params: + - type: reg_tup_ref + reg_tup: + - type: any + access: read + - type: reg_tup_ref + reg_tup: + - type: any + access: read + - type: i_label + + - code: 0x2d + mnemonic: jmpi_= + params: + - type: reg_tup_ref + reg_tup: + - type: dword + access: read + - type: dword + - type: i_label + + - code: 0x2e + mnemonic: jmp_!= + params: + - type: reg_tup_ref + reg_tup: + - type: any + access: read + - type: reg_tup_ref + reg_tup: + - type: any + access: read + - type: i_label + + - code: 0x2f + mnemonic: jmpi_!= + params: + - type: reg_tup_ref + reg_tup: + - type: dword + access: read + - type: dword + - type: i_label + + - code: 0x30 + mnemonic: ujmp_> + params: + - type: reg_tup_ref + reg_tup: + - type: dword + access: read + - type: reg_tup_ref + reg_tup: + - type: dword + access: read + - type: i_label + + - code: 0x31 + mnemonic: ujmpi_> + params: + - type: reg_tup_ref + reg_tup: + - type: dword + access: read + - type: dword + - type: i_label + + - code: 0x32 + mnemonic: jmp_> + params: + - type: reg_tup_ref + reg_tup: + - type: dword + access: read + - type: reg_tup_ref + reg_tup: + - type: dword + access: read + - type: i_label + + - code: 0x33 + mnemonic: jmpi_> + params: + - type: reg_tup_ref + reg_tup: + - type: dword + access: read + - type: dword + - type: i_label + + - code: 0x34 + mnemonic: ujmp_< + params: + - type: reg_tup_ref + reg_tup: + - type: dword + access: read + - type: reg_tup_ref + reg_tup: + - type: dword + access: read + - type: i_label + + - code: 0x35 + mnemonic: ujmpi_< + params: + - type: reg_tup_ref + reg_tup: + - type: dword + access: read + - type: dword + - type: i_label + + - code: 0x36 + mnemonic: jmp_< + params: + - type: reg_tup_ref + reg_tup: + - type: dword + access: read + - type: reg_tup_ref + reg_tup: + - type: dword + access: read + - type: i_label + + - code: 0x37 + mnemonic: jmpi_< + params: + - type: reg_tup_ref + reg_tup: + - type: dword + access: read + - type: dword + - type: i_label + + - code: 0x38 + mnemonic: ujmp_>= + params: + - type: reg_tup_ref + reg_tup: + - type: dword + access: read + - type: reg_tup_ref + reg_tup: + - type: dword + access: read + - type: i_label + + - code: 0x39 + mnemonic: ujmpi_>= + params: + - type: reg_tup_ref + reg_tup: + - type: dword + access: read + - type: dword + - type: i_label + + - code: 0x3a + mnemonic: jmp_>= + params: + - type: reg_tup_ref + reg_tup: + - type: dword + access: read + - type: reg_tup_ref + reg_tup: + - type: dword + access: read + - type: i_label + + - code: 0x3b + mnemonic: jmpi_>= + params: + - type: reg_tup_ref + reg_tup: + - type: dword + access: read + - type: dword + - type: i_label + + - code: 0x3c + mnemonic: ujmp_<= + params: + - type: reg_tup_ref + reg_tup: + - type: dword + access: read + - type: reg_tup_ref + reg_tup: + - type: dword + access: read + - type: i_label + + - code: 0x3d + mnemonic: ujmpi_<= + params: + - type: reg_tup_ref + reg_tup: + - type: dword + access: read + - type: dword + - type: i_label + + - code: 0x3e + mnemonic: jmp_<= + params: + - type: reg_tup_ref + reg_tup: + - type: dword + access: read + - type: reg_tup_ref + reg_tup: + - type: dword + access: read + - type: i_label + + - code: 0x3f + mnemonic: jmpi_<= + params: + - type: reg_tup_ref + reg_tup: + - type: dword + access: read + - type: dword + - type: i_label + + - code: 0x40 + mnemonic: switch_jmp + params: + - type: reg_tup_ref + reg_tup: + - type: dword + access: read + - type: i_label + + - code: 0x41 + mnemonic: switch_call + params: + - type: reg_tup_ref + reg_tup: + - type: dword + access: read + - type: i_label + + - code: 0x42 + mnemonic: stack_push + params: + - type: reg_tup_ref + reg_tup: + - type: any + access: read + + - code: 0x43 + mnemonic: stack_pop + params: + - type: reg_tup_ref + reg_tup: + - type: any + access: write + + - code: 0x44 + mnemonic: stack_pushm + doc: Pushes the values of an arbitrary amount of registers onto the stack. + params: + - type: reg_ref + access: read + - type: dword + + - code: 0x45 + mnemonic: stack_popm + doc: Pops an arbitrary amount of values from the stack and writes them to registers. + params: + - type: reg_ref + access: write + - type: dword + + - code: 0x48 + mnemonic: arg_pushr + doc: Pushes the value of the given register onto the stack. + params: + - type: reg_tup_ref + reg_tup: + - type: any + access: read + stack: push + + - code: 0x49 + mnemonic: arg_pushl + doc: Pushes the given value onto the stack. + params: + - type: dword + stack: push + + - code: 0x4a + mnemonic: arg_pushb + doc: Pushes the given value onto the stack. + params: + - type: byte + stack: push + + - code: 0x4b + mnemonic: arg_pushw + doc: Pushes the given value onto the stack. + params: + - type: word + stack: push + + - code: 0x4e + mnemonic: arg_pushs + doc: Pushes the given value onto the stack. + params: + - type: string + stack: push + + - code: 0x4f + params: + - type: reg_tup_ref + reg_tup: # TODO: determine type and access + - type: any + access: read + - type: reg_tup_ref + reg_tup: # TODO: determine type and access + - type: any + access: read + + - code: 0x50 + mnemonic: message + params: + - type: dword + - type: string + stack: pop + + - code: 0x51 + mnemonic: list + doc: |- + Used to display a list of items and retrieve the item selected by the player. + List items should be seperated by newlines. The selected item's index will be written to the given register. + params: + - type: reg_tup_ref + reg_tup: + - type: byte + access: write + - type: string + stack: pop + + - code: 0x52 + mnemonic: fadein + params: [] + + - code: 0x53 + mnemonic: fadeout + params: [] + + - code: 0x54 + mnemonic: se + params: + - type: dword + stack: pop + + - code: 0x55 + mnemonic: bgm + params: + - type: dword + stack: pop + + - code: 0x58 + mnemonic: enable + params: + - type: dword + stack: pop + + - code: 0x59 + mnemonic: disable + params: + - type: dword + stack: pop + + - code: 0x5a + mnemonic: window_msg + params: + - type: string + stack: pop + + - code: 0x5b + mnemonic: add_msg + params: + - type: string + stack: pop + + - code: 0x5c + mnemonic: mesend + params: [] + + - code: 0x5d + mnemonic: gettime + params: + - type: reg_tup_ref + reg_tup: + - type: dword + access: write + + - code: 0x5e + mnemonic: winend + params: [] + + - code: 0x60 + mnemonic: npc_crt_v3 + params: + - type: reg_tup_ref + reg_tup: # TODO: determine type and access + - type: any + access: read + + - code: 0x61 + mnemonic: npc_stop + params: + - type: dword + stack: pop + + - code: 0x62 + mnemonic: npc_play + params: + - type: dword + stack: pop + + - code: 0x63 + mnemonic: npc_kill + params: + - type: dword + stack: pop + + - code: 0x64 + mnemonic: npc_nont + params: [] + + - code: 0x65 + mnemonic: npc_talk + params: [] + + - code: 0x66 + mnemonic: npc_crp_v3 + params: + - type: reg_tup_ref + reg_tup: # TODO: determine type and access + - type: any + access: read + + - code: 0x68 + mnemonic: create_pipe + params: + - type: dword + stack: pop + + - code: 0x69 + mnemonic: p_hpstat_v3 + params: + - type: reg_tup_ref + reg_tup: # TODO: determine type and access + - type: any + access: read + - type: dword + stack: pop + + - code: 0x6a + mnemonic: p_dead_v3 + params: + - type: reg_tup_ref + reg_tup: + - type: byte + access: write + - type: dword + + - code: 0x6b + mnemonic: p_disablewarp + params: [] + + - code: 0x6c + mnemonic: p_enablewarp + params: [] + + - code: 0x6d + mnemonic: p_move_v3 + params: + - type: reg_tup_ref + reg_tup: # TODO: determine type and access + - type: any + access: read + + - code: 0x6e + mnemonic: p_look + params: + - type: dword + stack: pop + + - code: 0x70 + mnemonic: p_action_disable + params: [] + + - code: 0x71 + mnemonic: p_action_enable + params: [] + + - code: 0x72 + mnemonic: disable_movement1 + params: + - type: dword + stack: pop + + - code: 0x73 + mnemonic: enable_movement1 + params: + - type: dword + stack: pop + + - code: 0x74 + mnemonic: p_noncol + params: [] + + - code: 0x75 + mnemonic: p_col + params: [] + + - code: 0x76 + mnemonic: p_setpos + doc: Sets a player's position. + params: + - type: dword + doc: Player slot. + - type: reg_tup_ref + reg_tup: + - type: dword + doc: X coordinate. + access: read + - type: dword + doc: Y coordinate. + access: read + - type: dword + doc: Z coordinate. + access: read + - type: dword + doc: Y-axis rotation. + access: read + stack: pop + + - code: 0x77 + mnemonic: p_return_guild + params: [] + + - code: 0x78 + mnemonic: p_talk_guild + params: + - type: dword + stack: pop + + - code: 0x79 + mnemonic: npc_talk_pl_v3 + params: + - type: reg_tup_ref + reg_tup: # TODO: determine type and access + - type: any + access: read + + - code: 0x7a + mnemonic: npc_talk_kill + params: + - type: dword + stack: pop + + - code: 0x7b + mnemonic: npc_crtpk_v3 + params: + - type: reg_tup_ref + reg_tup: # TODO: determine type and access + - type: any + access: read + + - code: 0x7c + mnemonic: npc_crppk_v3 + params: + - type: reg_tup_ref + reg_tup: # TODO: determine type and access + - type: any + access: read + + - code: 0x7d + mnemonic: npc_crptalk_v3 + params: + - type: reg_tup_ref + reg_tup: # TODO: determine type and access + - type: any + access: read + + - code: 0x7e + mnemonic: p_look_at_v1 + params: + - type: dword + - type: dword + stack: pop + + - code: 0x7f + mnemonic: npc_crp_id_v3 + params: + - type: reg_tup_ref + reg_tup: # TODO: determine type and access + - type: any + access: read + + - code: 0x80 + mnemonic: cam_quake + params: [] + + - code: 0x81 + mnemonic: cam_adj + params: [] + + - code: 0x82 + mnemonic: cam_zmin + params: [] + + - code: 0x83 + mnemonic: cam_zmout + params: [] + + - code: 0x84 + mnemonic: cam_pan_v3 + params: + - type: reg_tup_ref + reg_tup: + - type: dword + access: read + - type: dword + access: read + - type: dword + access: read + - type: dword + access: read + - type: dword + access: read + + - code: 0x85 + mnemonic: game_lev_super + params: [] + + - code: 0x86 + mnemonic: game_lev_reset + params: [] + + - code: 0x87 + mnemonic: pos_pipe_v3 + doc: Create a telepipe at a specific position for the given player slot that takes players back to Pioneer 2 or the Lab. + params: + - type: reg_tup_ref + reg_tup: + - type: dword + doc: X coordinate. + access: read + - type: dword + doc: Y coordinate. + access: read + - type: dword + doc: Z coordinate. + access: read + - type: dword + doc: Player slot. + access: read + + - code: 0x88 + mnemonic: if_zone_clear + params: + - type: reg_tup_ref + reg_tup: + - type: dword + access: write + - type: reg_tup_ref + reg_tup: + - type: dword + access: read + - type: dword + access: read + + - code: 0x89 + mnemonic: chk_ene_num + doc: Retrieves the amount of enemies killed during the quest. + params: + - type: reg_tup_ref + reg_tup: + - type: dword + access: write + + - code: 0x8a + mnemonic: unhide_obj + params: + - type: reg_tup_ref + reg_tup: + - type: dword + access: read + - type: dword + access: read + - type: dword + access: read + + - code: 0x8b + mnemonic: unhide_ene + params: + - type: reg_tup_ref + reg_tup: + - type: dword + access: read + - type: dword + access: read + - type: dword + access: read + - type: dword + access: read + + - code: 0x8c + mnemonic: at_coords_call + params: + - type: reg_tup_ref + reg_tup: + - type: dword + access: read + - type: dword + access: read + - type: dword + access: read + - type: dword + access: read + - type: i_label + access: read + + - code: 0x8d + mnemonic: at_coords_talk + params: + - type: reg_tup_ref + reg_tup: + - type: dword + access: read + - type: dword + access: read + - type: dword + access: read + - type: dword + access: read + - type: i_label + access: read + + - code: 0x8e + mnemonic: col_npcin + params: + - type: reg_tup_ref + reg_tup: + - type: dword + access: read + - type: dword + access: read + - type: dword + access: read + - type: dword + access: read + - type: i_label + access: read + + - code: 0x8f + mnemonic: col_npcinr + params: + - type: reg_tup_ref + reg_tup: # TODO: determine type and access + - type: any + access: read + + - code: 0x90 + mnemonic: switch_on + params: + - type: dword + stack: pop + + - code: 0x91 + mnemonic: switch_off + params: + - type: dword + stack: pop + + - code: 0x92 + mnemonic: playbgm_epi + params: + - type: dword + stack: pop + + - code: 0x93 + mnemonic: set_mainwarp + params: + - type: dword + stack: pop + + - code: 0x94 + mnemonic: set_obj_param + doc: Creates a targetable object. + params: + - type: reg_tup_ref + reg_tup: + - type: dword + doc: X coordinate. + access: read + - type: dword + doc: Y coordinate. + access: read + - type: dword + doc: Z coordinate. + access: read + - type: dword + doc: Collision radius. + access: read + - type: i_label + doc: Function label. + access: read + - type: dword + doc: Vertical position of the cursor. + access: read + - type: reg_tup_ref + doc: Object handle. + reg_tup: + - type: any + access: write + + - code: 0x95 + mnemonic: set_floor_handler + params: + - type: dword + doc: Floor number. + - type: i_label + doc: Handler function label. + stack: pop + + - code: 0x96 + mnemonic: clr_floor_handler + params: + - type: dword + doc: Floor number. + stack: pop + + - code: 0x97 + mnemonic: col_plinaw + params: + - type: reg_tup_ref + reg_tup: # TODO: determine type and access + - type: any + access: read + + - code: 0x98 + mnemonic: hud_hide + params: [] + + - code: 0x99 + mnemonic: hud_show + params: [] + + - code: 0x9a + mnemonic: cine_enable + params: [] + + - code: 0x9b + mnemonic: cine_disable + params: [] + + - code: 0xa1 + mnemonic: set_qt_failure + params: + - type: i_label + + - code: 0xa2 + mnemonic: set_qt_success + params: + - type: i_label + + - code: 0xa3 + mnemonic: clr_qt_failure + params: [] + + - code: 0xa4 + mnemonic: clr_qt_success + params: [] + + - code: 0xa5 + mnemonic: set_qt_cancel + params: + - type: i_label + + - code: 0xa6 + mnemonic: clr_qt_cancel + params: [] + + - code: 0xa8 + mnemonic: pl_walk_v3 + params: + - type: reg_tup_ref + reg_tup: # TODO: determine type and access + - type: any + access: read + + - code: 0xb0 + mnemonic: pl_add_meseta + params: + - type: dword + - type: dword + stack: pop + + - code: 0xb1 + mnemonic: thread_stg + params: + - type: i_label + + - code: 0xb2 + mnemonic: del_obj_param + params: + - type: reg_tup_ref + doc: Object handle. + reg_tup: + - type: any + access: read + + - code: 0xb3 + mnemonic: item_create + params: + - type: reg_tup_ref + reg_tup: # TODO: determine type and access + - type: any + access: read + - type: reg_tup_ref + reg_tup: # TODO: determine type and access + - type: any + access: read + + - code: 0xb4 + mnemonic: item_create2 + params: + - type: reg_tup_ref + reg_tup: # TODO: determine type and access + - type: any + access: read + - type: reg_tup_ref + reg_tup: # TODO: determine type and access + - type: any + access: read + + - code: 0xb5 + mnemonic: item_delete + params: + - type: reg_tup_ref + reg_tup: # TODO: determine type and access + - type: any + access: read + - type: reg_tup_ref + reg_tup: # TODO: determine type and access + - type: any + access: read + + - code: 0xb6 + mnemonic: item_delete2 + doc: Deletes an item from the player's inventory. + params: + - type: reg_tup_ref + reg_tup: + - type: dword + access: read + - type: dword + access: read + - type: dword + access: read + - type: reg_tup_ref + reg_tup: # TODO: determine type and access + - type: any + access: write + + - code: 0xb7 + mnemonic: item_check + params: + - type: reg_tup_ref + reg_tup: # TODO: determine type and access + - type: any + access: read + - type: reg_tup_ref + reg_tup: # TODO: determine type and access + - type: any + access: read + + - code: 0xb8 + mnemonic: setevt + params: + - type: dword + stack: pop + + - code: 0xb9 + mnemonic: get_difflvl + doc: |- + Sets the given register to the current difficulty. 0 For normal, 1 for hard and 2 for both very hard and ultimate. + Use get_difficulty_level2 if you want to differentiate between very hard and ultimate. + params: + - type: reg_tup_ref + reg_tup: + - type: dword + access: write + + - code: 0xba + mnemonic: set_qt_exit + params: + - type: i_label + + - code: 0xbb + mnemonic: clr_qt_exit + params: [] + + - code: 0xc0 + mnemonic: particle_v3 + params: + - type: reg_tup_ref + reg_tup: # TODO: determine type and access + - type: any + access: read + + - code: 0xc1 + mnemonic: npc_text + params: + - type: dword + - type: string + stack: pop + + - code: 0xc2 + mnemonic: npc_chkwarp + params: [] + + - code: 0xc3 + mnemonic: pl_pkoff + params: [] + + - code: 0xc4 + mnemonic: map_designate + params: + - type: reg_tup_ref + reg_tup: # TODO: determine type and access + - type: any + access: read + + - code: 0xc5 + mnemonic: masterkey_on + params: [] + + - code: 0xc6 + mnemonic: masterkey_off + params: [] + + - code: 0xc7 + mnemonic: window_time + params: [] + + - code: 0xc8 + mnemonic: winend_time + params: [] + + - code: 0xc9 + mnemonic: winset_time + params: + - type: reg_tup_ref + reg_tup: + - type: dword + access: write + + - code: 0xca + mnemonic: getmtime + params: + - type: reg_tup_ref + reg_tup: # TODO: determine type and access + - type: any + access: write + + - code: 0xcb + mnemonic: set_quest_board_handler + params: + - type: dword + - type: i_label + - type: string + stack: pop + + - code: 0xcc + mnemonic: clear_quest_board_handler + params: + - type: dword + stack: pop + + - code: 0xcd + mnemonic: particle_id_v3 + params: + - type: reg_tup_ref + reg_tup: + - type: dword + access: read + - type: dword + access: read + - type: dword + access: read + - type: dword + access: read + + - code: 0xce + mnemonic: npc_crptalk_id_v3 + params: + - type: reg_tup_ref + reg_tup: # TODO: determine type and access + - type: any + access: read + + - code: 0xcf + mnemonic: npc_lang_clean + params: [] + + - code: 0xd0 + mnemonic: pl_pkon + params: [] + + - code: 0xd1 + mnemonic: pl_chk_item2 + params: + - type: reg_tup_ref + reg_tup: # TODO: determine type and access + - type: any + access: read + - type: reg_tup_ref + reg_tup: # TODO: determine type and access + - type: any + access: read + + - code: 0xd2 + mnemonic: enable_mainmenu + params: [] + + - code: 0xd3 + mnemonic: disable_mainmenu + params: [] + + - code: 0xd4 + mnemonic: start_battlebgm + params: [] + + - code: 0xd5 + mnemonic: end_battlebgm + params: [] + + - code: 0xd6 + mnemonic: disp_msg_qb + params: + - type: string + stack: pop + + - code: 0xd7 + mnemonic: close_msg_qb + params: [] + + - code: 0xd8 + mnemonic: set_eventflag_v3 + params: + - type: dword + - type: dword + stack: pop + + - code: 0xd9 + mnemonic: sync_leti + params: + - type: reg_tup_ref + reg_tup: + - type: dword + access: write + - type: dword + + - code: 0xda + mnemonic: set_returnhunter + params: [] + + - code: 0xdb + mnemonic: set_returncity + params: [] + + - code: 0xdc + mnemonic: load_pvr + params: [] + + - code: 0xdd + mnemonic: load_midi + params: [] + + - code: 0xdf + mnemonic: npc_param_v3 + params: + - type: reg_tup_ref + reg_tup: # TODO: determine type and access + - type: any + access: read + - type: dword + stack: pop + + - code: 0xe0 + mnemonic: pad_dragon + params: [] + + - code: 0xe1 + mnemonic: clear_mainwarp + params: + - type: dword + stack: pop + + - code: 0xe2 + mnemonic: pcam_param_v3 + params: + - type: reg_tup_ref + reg_tup: # TODO: determine type and access + - type: any + access: read + + - code: 0xe3 + mnemonic: start_setevt_v3 + params: + - type: reg_tup_ref + reg_tup: # TODO: determine type and access + - type: any + access: read + - type: dword + stack: pop + + - code: 0xe4 + mnemonic: warp_on + params: [] + + - code: 0xe5 + mnemonic: warp_off + params: [] + + - code: 0xe6 + mnemonic: get_slotnumber + params: + - type: reg_tup_ref + reg_tup: + - type: dword + access: write + + - code: 0xe7 + mnemonic: get_servernumber + params: + - type: reg_tup_ref + reg_tup: + - type: dword + access: write # TODO: determine reg_tup + + - code: 0xe8 + mnemonic: set_eventflag2 + params: + - type: dword + - type: reg_tup_ref + reg_tup: # TODO: determine type and access + - type: any + access: read + stack: pop + + - code: 0xe9 + mnemonic: res + params: + - type: reg_tup_ref + reg_tup: # TODO: determine type and access + - type: any + access: read + - type: reg_tup_ref + reg_tup: # TODO: determine type and access + - type: any + access: read + + - code: 0xea + params: + - type: reg_tup_ref + reg_tup: # TODO: determine type and access + - type: any + access: read + - type: dword + + - code: 0xeb + mnemonic: enable_bgmctrl + params: + - type: dword + stack: pop + + - code: 0xec + mnemonic: sw_send + params: + - type: reg_tup_ref + reg_tup: # TODO: determine type and access + - type: any + access: read + + - code: 0xed + mnemonic: create_bgmctrl + params: [] + + - code: 0xee + mnemonic: pl_add_meseta2 + params: + - type: dword + stack: pop + + - code: 0xef + mnemonic: sync_register + params: + - type: reg_tup_ref + reg_tup: + - type: dword + access: write + - type: dword + stack: pop + + - code: 0xf0 + mnemonic: send_regwork + params: [] + + - code: 0xf1 + mnemonic: leti_fixed_camera_v3 + params: + - type: reg_tup_ref + reg_tup: + - type: dword + access: read + - type: dword + access: read + - type: dword + access: read + - type: dword + access: read + - type: dword + access: read + - type: dword + access: read + + - code: 0xf2 + mnemonic: default_camera_pos1 + params: [] + + - code: 0xf8 + params: + - type: reg_tup_ref + reg_tup: # TODO: determine type and access + - type: any + access: read + + - code: 0xfa + mnemonic: get_gc_number + params: + - type: reg_tup_ref + reg_tup: # TODO: determine type and access + - type: any + access: write + + - code: 0xfb + params: + - type: word + + - code: 0xf801 + mnemonic: set_chat_callback + params: + - type: reg_tup_ref + reg_tup: # TODO: determine type and access + - type: any + access: read + - type: string + stack: pop + + - code: 0xf808 + mnemonic: get_difficulty_level2 + doc: Sets the given register to the current difficulty. 0 For normal, 1 for hard, 2 for very hard and 3 for ultimate. + params: + - type: reg_tup_ref + reg_tup: + - type: dword + access: write + + - code: 0xf809 + mnemonic: get_number_of_player1 + doc: Set the given register to the current number of players. Either 1, 2, 3 or 4. + params: + - type: reg_tup_ref + reg_tup: + - type: dword + access: write + + - code: 0xf80a + mnemonic: get_coord_of_player + doc: Retrieves a player's position. + params: + - type: reg_tup_ref + reg_tup: + - type: dword + doc: X coordinate. + access: write + - type: dword + doc: Y coordinate. + access: write + - type: dword + doc: Z coordinate. + access: write + - type: reg_tup_ref + reg_tup: + - type: dword + doc: Player slot. + access: read + + - code: 0xf80b + mnemonic: enable_map + params: [] + + - code: 0xf80c + mnemonic: disable_map + params: [] + + - code: 0xf80d + mnemonic: map_designate_ex + params: + - type: reg_tup_ref + reg_tup: + - type: dword + access: read + - type: dword + access: read + - type: dword + access: read + - type: dword + access: read + - type: dword + access: read + + - code: 0xf80e + params: + - type: dword + stack: pop + + - code: 0xf80f + params: + - type: dword + stack: pop + + - code: 0xf810 + mnemonic: ba_initial_floor + params: + - type: dword + stack: pop + + - code: 0xf811 + mnemonic: set_ba_rules + params: [] + + - code: 0xf812 + params: + - type: dword + stack: pop + + - code: 0xf813 + params: + - type: dword + stack: pop + + - code: 0xf814 + params: + - type: dword + stack: pop + + - code: 0xf815 + params: + - type: dword + stack: pop + + - code: 0xf816 + params: + - type: dword + stack: pop + + - code: 0xf817 + params: + - type: dword + stack: pop + + - code: 0xf818 + params: + - type: dword + stack: pop + + - code: 0xf819 + params: + - type: dword + stack: pop + + - code: 0xf81a + params: + - type: dword + stack: pop + + - code: 0xf81b + params: + - type: dword + stack: pop + + - code: 0xf81c + mnemonic: ba_disp_msg + params: + - type: string + stack: pop + + - code: 0xf81d + mnemonic: death_lvl_up + params: + - type: dword + stack: pop + + - code: 0xf81e + mnemonic: death_tech_lvl_up + params: + - type: dword + stack: pop + + - code: 0xf820 + mnemonic: cmode_stage + params: + - type: dword + stack: pop + + - code: 0xf823 + params: + - type: dword + stack: pop + + - code: 0xf824 + params: + - type: dword + stack: pop + + - code: 0xf825 + mnemonic: exp_multiplication + params: + - type: reg_tup_ref + reg_tup: # TODO: determine type and access + - type: any + access: write + + - code: 0xf826 + mnemonic: exp_division + params: + - type: reg_tup_ref + reg_tup: # TODO: determine type and access + - type: any + access: write + + - code: 0xf827 + mnemonic: get_user_is_dead + params: + - type: reg_tup_ref + reg_tup: # TODO: determine type and access + - type: any + access: write + + - code: 0xf828 + mnemonic: go_floor + doc: Sends a player to the given floor. + params: + - type: reg_tup_ref + reg_tup: + - type: dword + doc: Player slot. + access: read + - type: reg_tup_ref + reg_tup: + - type: dword + doc: Floor ID. + access: read + + - code: 0xf82b + mnemonic: unlock_door2 + params: [{ type: dword }, { type: dword }] + stack: pop + + - code: 0xf82c + mnemonic: lock_door2 + params: [{ type: dword }, { type: dword }] + stack: pop + + - code: 0xf82d + mnemonic: if_switch_not_pressed + params: + - type: reg_tup_ref + reg_tup: # TODO: determine type and access + - type: dword + access: read + - type: dword + access: write + + - code: 0xf82e + mnemonic: if_switch_pressed + params: + - type: reg_tup_ref + reg_tup: + - type: dword + doc: Floor ID. + access: read + - type: dword + doc: Switch ID. + access: read + - type: dword + doc: Will be set to 1 if the switch is pressed, 0 otherwise. + access: write + + - code: 0xf82f + params: [{ type: dword }, { type: dword }] + stack: pop + + - code: 0xf830 + mnemonic: control_dragon + params: + - type: reg_tup_ref + reg_tup: # TODO: determine type and access + - type: dword + access: read + + - code: 0xf831 + mnemonic: release_dragon + params: [] + + - code: 0xf838 + mnemonic: shrink + params: + - type: reg_tup_ref + reg_tup: + - type: dword + doc: Player slot. + access: read + + - code: 0xf839 + mnemonic: unshrink + params: + - type: reg_tup_ref + reg_tup: + - type: dword + doc: Player slot. + access: read + + - code: 0xf83c + mnemonic: display_clock2 + params: + - type: reg_tup_ref + reg_tup: # TODO: determine type and access + - type: dword + access: read + + - code: 0xf83d + params: + - type: dword + stack: pop + + - code: 0xf83e + mnemonic: delete_area_title + params: + - type: dword + stack: pop + + - code: 0xf840 + mnemonic: load_npc_data + params: [] + + - code: 0xf841 + mnemonic: get_npc_data + params: + - type: d_label + + - code: 0xf848 + mnemonic: give_damage_score + params: + - type: reg_tup_ref + reg_tup: # TODO: determine type and access + - type: dword + access: write + + - code: 0xf849 + mnemonic: take_damage_score + params: + - type: reg_tup_ref + reg_tup: # TODO: determine type and access + - type: dword + access: write + + - code: 0xf84a + mnemonic: unk_score_f84a + params: + - type: reg_tup_ref + reg_tup: # TODO: determine type and access + - type: dword + access: write + + - code: 0xf84b + mnemonic: unk_score_f84b + params: + - type: reg_tup_ref + reg_tup: # TODO: determine type and access + - type: dword + access: write + + - code: 0xf84c + mnemonic: kill_score + params: + - type: reg_tup_ref + reg_tup: # TODO: determine type and access + - type: dword + access: write + + - code: 0xf84d + mnemonic: death_score + params: + - type: reg_tup_ref + reg_tup: # TODO: determine type and access + - type: dword + access: write + + - code: 0xf84e + mnemonic: unk_score_f84e + params: + - type: reg_tup_ref + reg_tup: # TODO: determine type and access + - type: dword + access: write + + - code: 0xf84f + mnemonic: enemy_death_score + params: + - type: reg_tup_ref + reg_tup: # TODO: determine type and access + - type: dword + access: write + + - code: 0xf850 + mnemonic: meseta_score + params: + - type: reg_tup_ref + reg_tup: # TODO: determine type and access + - type: dword + access: write + + - code: 0xf851 + params: + - type: reg_tup_ref + reg_tup: # TODO: determine type and access + - type: dword + access: write + + - code: 0xf852 + params: + - type: dword + stack: pop + + - code: 0xf853 + mnemonic: reverse_warps + params: [] + + - code: 0xf854 + mnemonic: unreverse_warps + params: [] + + - code: 0xf855 + mnemonic: set_ult_map + params: [] + + - code: 0xf856 + mnemonic: unset_ult_map + params: [] + + - code: 0xf857 + mnemonic: set_area_title + params: + - type: string + stack: pop + + - code: 0xf85a + mnemonic: equip_item + params: + - type: reg_tup_ref + reg_tup: # TODO: determine type and access + - type: dword + access: read + + - code: 0xf85b + mnemonic: unequip_item + params: + - type: dword + - type: dword + stack: pop + + - code: 0xf85e + params: + - type: dword + stack: pop + + - code: 0xf85f + params: + - type: dword + stack: pop + + - code: 0xf860 + params: [] + + - code: 0xf861 + params: + - type: dword + stack: pop + + - code: 0xf864 + mnemonic: cmode_rank + params: + - type: dword + - type: string + stack: pop + + - code: 0xf865 + mnemonic: award_item_name + params: [] + + - code: 0xf866 + mnemonic: award_item_select + params: [] + + - code: 0xf867 + mnemonic: award_item_give_to + params: [{ type: Type.RegRef }] + + - code: 0xf868 + params: [{ type: Type.RegRef }, { type: Type.RegRef }] + + - code: 0xf869 + params: [{ type: Type.RegRef }, { type: Type.RegRef }] + + - code: 0xf86a + mnemonic: item_create_cmode + params: [{ type: Type.RegRef }, { type: Type.RegRef }] + + - code: 0xf86b + params: [{ type: Type.RegRef }] + + - code: 0xf86c + mnemonic: award_item_ok + params: [{ type: Type.RegRef }] + + - code: 0xf86f + mnemonic: ba_set_lives + params: + - type: dword + stack: pop + + - code: 0xf870 + mnemonic: ba_set_tech_lvl + params: + - type: dword + stack: pop + + - code: 0xf871 + mnemonic: ba_set_lvl + params: + - type: dword + stack: pop + + - code: 0xf872 + mnemonic: ba_set_time_limit + params: + - type: dword + stack: pop + + - code: 0xf873 + mnemonic: boss_is_dead + params: [{ type: Type.RegRef }] + + - code: 0xf877 + mnemonic: enable_techs + params: [{ type: Type.RegRef }] + + - code: 0xf878 + mnemonic: disable_techs + params: [{ type: Type.RegRef }] + + - code: 0xf879 + mnemonic: get_gender + params: [{ type: Type.RegRef }, { type: Type.RegRef }] + + - code: 0xf87a + mnemonic: get_chara_class + params: [{ type: Type.RegRef }, { type: Type.RegRef }] + + - code: 0xf87b + mnemonic: take_slot_meseta + params: [{ type: Type.RegRef }, { type: Type.RegRef }] + + - code: 0xf87f + mnemonic: read_guildcard_flag + params: [{ type: Type.RegRef }, { type: Type.RegRef }] + + - code: 0xf880 + params: [{ type: Type.RegRef }] + + - code: 0xf881 + mnemonic: get_pl_name + params: [{ type: Type.RegRef }] + + - code: 0xf883 + params: [{ type: Type.RegRef }, { type: Type.RegRef }] + + - code: 0xf88a + mnemonic: get_player_status + params: [{ type: Type.RegRef }, { type: Type.RegRef }] + + - code: 0xf88b + mnemonic: send_mail + params: [] + stack_params: [{ type: Type.RegRef }, { type: string }] + + - code: 0xf88c + mnemonic: online_check + params: [{ type: Type.RegRef }] + + - code: 0xf88d + mnemonic: chl_set_timerecord + params: [{ type: Type.RegRef }] + + - code: 0xf88e + mnemonic: chl_get_timerecord + params: [{ type: Type.RegRef }] + + - code: 0xf88f + params: [{ type: Type.RegRef }] + + - code: 0xf891 + mnemonic: load_enemy_data + params: + - type: dword + stack: pop + + - code: 0xf892 + mnemonic: get_physical_data + params: + - type: word + + - code: 0xf893 + mnemonic: get_attack_data + params: + - type: word + + - code: 0xf894 + mnemonic: get_resist_data + params: + - type: word + + - code: 0xf895 + mnemonic: get_movement_data + params: + - type: word + + - code: 0xf898 + mnemonic: shift_left + params: [{ type: Type.RegRef }, { type: Type.RegRef }] + + - code: 0xf899 + mnemonic: shift_right + params: [{ type: Type.RegRef }, { type: Type.RegRef }] + + - code: 0xf89a + mnemonic: get_random + params: [{ type: Type.RegRef }, { type: Type.RegRef }] + # Resets all registers to 0 (may have to change areas?). + + - code: 0xf89b + mnemonic: reset_map + params: [] + + - code: 0xf89c + mnemonic: disp_chl_retry_menu + params: [{ type: Type.RegRef }] + + - code: 0xf89d + mnemonic: chl_reverser + params: [] + + - code: 0xf89e + params: [] + stack_params: + - type: dword + + - code: 0xf89f + params: [{ type: Type.RegRef }] + + - code: 0xf8a8 + params: [] + stack_params: + - type: dword + + - code: 0xf8a9 + params: [{ type: Type.RegRef }] + + - code: 0xf8ad + mnemonic: get_number_of_player2 + params: [{ type: Type.RegRef }] + + - code: 0xf8b9 + mnemonic: chl_recovery + params: [] + + - code: 0xf8bc + mnemonic: set_episode + params: + - type: dword + + - code: 0xf8c0 + mnemonic: file_dl_req + params: [] + stack_params: [{ type: dword }, { type: string }] + + - code: 0xf8c1 + mnemonic: get_dl_status + params: [{ type: Type.RegRef }] + + - code: 0xf8c2 + mnemonic: gba_unknown4 + params: [] + + - code: 0xf8c3 + mnemonic: get_gba_state + params: [{ type: Type.RegRef }] + + - code: 0xf8c4 + params: [{ type: Type.RegRef }] + + - code: 0xf8c5 + params: [{ type: Type.RegRef }] + + - code: 0xf8c6 + mnemonic: qexit + params: [] + + - code: 0xf8c7 + mnemonic: use_animation + params: [{ type: Type.RegRef }, { type: Type.RegRef }] + + - code: 0xf8c8 + mnemonic: stop_animation + params: [{ type: Type.RegRef }] + + - code: 0xf8c9 + mnemonic: run_to_coord + params: [{ type: Type.RegRef }, { type: Type.RegRef }] + + - code: 0xf8ca + mnemonic: set_slot_invincible + params: [{ type: Type.RegRef }, { type: Type.RegRef }] + + - code: 0xf8cb + params: [{ type: Type.RegRef }] + + - code: 0xf8cc + mnemonic: set_slot_poison + params: [{ type: Type.RegRef }] + + - code: 0xf8cd + mnemonic: set_slot_paralyze + params: [{ type: Type.RegRef }] + + - code: 0xf8ce + mnemonic: set_slot_shock + params: [{ type: Type.RegRef }] + + - code: 0xf8cf + mnemonic: set_slot_freeze + params: [{ type: Type.RegRef }] + + - code: 0xf8d0 + mnemonic: set_slot_slow + params: [{ type: Type.RegRef }] + + - code: 0xf8d1 + mnemonic: set_slot_confuse + params: [{ type: Type.RegRef }] + + - code: 0xf8d2 + mnemonic: set_slot_shifta + params: [{ type: Type.RegRef }] + + - code: 0xf8d3 + mnemonic: set_slot_deband + params: [{ type: Type.RegRef }] + + - code: 0xf8d4 + mnemonic: set_slot_jellen + params: [{ type: Type.RegRef }] + + - code: 0xf8d5 + mnemonic: set_slot_zalure + params: [{ type: Type.RegRef }] + + - code: 0xf8d6 + mnemonic: fleti_fixed_camera + params: [] + stack_params: [{ type: Type.RegRef }] + + - code: 0xf8d7 + mnemonic: fleti_locked_camera + params: [] + stack_params: [{ type: dword }, { type: Type.RegRef }] + + - code: 0xf8d8 + mnemonic: default_camera_pos2 + params: [] + + - code: 0xf8d9 + mnemonic: set_motion_blur + params: [] + + - code: 0xf8da + mnemonic: set_screen_bw + params: [] + + - code: 0xf8db + params: [] + stack_params: [ + { type: dword }, + { type: dword }, + { type: dword }, + { type: dword }, + { type: Type.RegRef }, + { type: word } + ] + # TODO: 3rd parameter is a string data reference. + + - code: 0xf8dc + mnemonic: npc_action_string + params: [{ type: Type.RegRef }, { type: Type.RegRef }, { type: d_label }] + + - code: 0xf8dd + mnemonic: get_pad_cond + params: [{ type: Type.RegRef }, { type: Type.RegRef }] + + - code: 0xf8de + mnemonic: get_button_cond + params: [{ type: Type.RegRef }, { type: Type.RegRef }] + + - code: 0xf8df + mnemonic: freeze_enemies + params: [] + + - code: 0xf8e0 + mnemonic: unfreeze_enemies + params: [] + + - code: 0xf8e1 + mnemonic: freeze_everything + params: [] + + - code: 0xf8e2 + mnemonic: unfreeze_everything + params: [] + + - code: 0xf8e3 + mnemonic: restore_hp + params: [{ type: Type.RegRef }] + + - code: 0xf8e4 + mnemonic: restore_tp + params: [{ type: Type.RegRef }] + + - code: 0xf8e5 + mnemonic: close_chat_bubble + params: [{ type: Type.RegRef }] + + - code: 0xf8e6 + mnemonic: move_coords_object + params: [{ type: Type.RegRef }, { type: Type.RegRef }] + + - code: 0xf8e7 + mnemonic: at_coords_call_ex + params: [{ type: Type.RegRef }, { type: Type.RegRef }] + + - code: 0xf8e8 + params: [{ type: Type.RegRef }, { type: Type.RegRef }] + + - code: 0xf8e9 + params: [{ type: Type.RegRef }, { type: Type.RegRef }] + + - code: 0xf8ea + params: [{ type: Type.RegRef }, { type: Type.RegRef }] + + - code: 0xf8eb + params: [{ type: Type.RegRef }, { type: Type.RegRef }] + + - code: 0xf8ec + params: [{ type: Type.RegRef }, { type: Type.RegRef }] + + - code: 0xf8ed + mnemonic: animation_check + params: [{ type: Type.RegRef }, { type: Type.RegRef }] + + - code: 0xf8ee + mnemonic: call_image_data + params: [] + stack_params: [{ type: dword }, { type: word }] + + - code: 0xf8f0 + mnemonic: turn_off_bgm_p2 + params: [] + + - code: 0xf8f1 + mnemonic: turn_on_bgm_p2 + params: [] + + - code: 0xf8f2 + mnemonic: load_unk_data + params: [] + stack_params: [ + { type: dword }, + { type: dword }, + { type: dword }, + { type: dword }, + { type: Type.RegRef }, + { type: d_label } + ] + + - code: 0xf8f3 + mnemonic: particle2 + params: [] + stack_params: [{ type: Type.RegRef }, { type: dword }, { type: f32 }] + + - code: 0xf901 + mnemonic: dec2float + params: [{ type: Type.RegRef }, { type: Type.RegRef }] + + - code: 0xf902 + mnemonic: float2dec + params: [{ type: Type.RegRef }, { type: Type.RegRef }] + + - code: 0xf903 + mnemonic: flet + params: + - type: reg_tup_ref + reg_tup: + - type: float + access: write + - type: reg_tup_ref + reg_tup: + - type: float + access: read + + - code: 0xf904 + mnemonic: fleti + params: + - type: reg_tup_ref + reg_tup: + - type: float + access: write + - type: float + + - code: 0xf908 + mnemonic: fadd + params: + - type: reg_tup_ref + reg_tup: + - type: float + access: write + - type: reg_tup_ref + reg_tup: + - type: float + access: read + + - code: 0xf909 + mnemonic: faddi + params: + - type: reg_tup_ref + reg_tup: + - type: float + access: write + - type: float + + - code: 0xf90a + mnemonic: fsub + params: + - type: reg_tup_ref + reg_tup: + - type: float + access: write + - type: reg_tup_ref + reg_tup: + - type: float + access: read + + - code: 0xf90b + mnemonic: fsubi + params: + - type: reg_tup_ref + reg_tup: + - type: float + access: write + - type: float + + - code: 0xf90c + mnemonic: fmul + params: + - type: reg_tup_ref + reg_tup: + - type: float + access: write + - type: reg_tup_ref + reg_tup: + - type: float + access: read + + - code: 0xf90d + mnemonic: fmuli + params: + - type: reg_tup_ref + reg_tup: + - type: float + access: write + - type: float + + - code: 0xf90e + mnemonic: fdiv + params: + - type: reg_tup_ref + reg_tup: + - type: float + access: write + - type: reg_tup_ref + reg_tup: + - type: float + access: read + + - code: 0xf90f + mnemonic: fdivi + params: + - type: reg_tup_ref + reg_tup: + - type: float + access: write + - type: float + + - code: 0xf910 + mnemonic: get_unknown_count + params: [] + stack_params: [{ type: dword }, { type: Type.RegRef }] + + - code: 0xf911 + mnemonic: get_stackable_item_count + params: [{ type: Type.RegRef }, { type: Type.RegRef }] + + - code: 0xf912 + mnemonic: freeze_and_hide_equip + params: [] + + - code: 0xf913 + mnemonic: thaw_and_show_equip + params: [] + + - code: 0xf914 + mnemonic: set_palettex_callback + params: [] + stack_params: [{ type: Type.RegRef }, { type: i_label }] + + - code: 0xf915 + mnemonic: activate_palettex + params: [] + stack_params: [{ type: Type.RegRef }] + + - code: 0xf916 + mnemonic: enable_palettex + params: [] + stack_params: [{ type: Type.RegRef }] + + - code: 0xf917 + mnemonic: restore_palettex + params: + - type: dword + stack: pop + + - code: 0xf918 + mnemonic: disable_palettex + params: + - type: dword + stack: pop + + - code: 0xf919 + mnemonic: get_palettex_activated + params: [] + stack_params: [{ type: dword }, { type: Type.RegRef }] + + - code: 0xf91a + mnemonic: get_unknown_palettex_status + params: [] + stack_params: [{ type: dword }, { type: Type.RegRef }] + + - code: 0xf91b + mnemonic: disable_movement2 + params: [] + stack_params: [{ type: Type.RegRef }] + + - code: 0xf91c + mnemonic: enable_movement2 + params: [] + stack_params: [{ type: Type.RegRef }] + + - code: 0xf91d + mnemonic: get_time_played + params: [{ type: Type.RegRef }] + + - code: 0xf91e + mnemonic: get_guildcard_total + params: [{ type: Type.RegRef }] + + - code: 0xf91f + mnemonic: get_slot_meseta + params: [{ type: Type.RegRef }] + + - code: 0xf920 + mnemonic: get_player_level + params: [] + stack_params: [{ type: dword }, { type: Type.RegRef }] + + - code: 0xf921 + mnemonic: get_section_id + params: [] + stack_params: [{ type: dword }, { type: Type.RegRef }] + + - code: 0xf922 + mnemonic: get_player_hp + params: [] + stack_params: [{ type: Type.RegRef }, { type: Type.RegRef }] + + - code: 0xf923 + mnemonic: get_floor_number + params: [] + stack_params: [{ type: Type.RegRef }, { type: Type.RegRef }] + + - code: 0xf924 + mnemonic: get_coord_player_detect + params: [{ type: Type.RegRef }, { type: Type.RegRef }] + + - code: 0xf925 + mnemonic: read_global_flag + params: [] + stack_params: [{ type: byte }, { type: Type.RegRef }] + + - code: 0xf926 + mnemonic: write_global_flag + params: [] + stack_params: [{ type: byte }, { type: Type.RegRef }] + + - code: 0xf927 + params: [{ type: Type.RegRef }, { type: Type.RegRef }] + + - code: 0xf928 + mnemonic: floor_player_detect + params: [{ type: Type.RegRef }] + + - code: 0xf929 + mnemonic: read_disk_file + params: [] + stack_params: + - type: string + + - code: 0xf92a + mnemonic: open_pack_select + params: [] + + - code: 0xf92b + mnemonic: item_select + params: [{ type: Type.RegRef }] + + - code: 0xf92c + mnemonic: get_item_id + params: [{ type: Type.RegRef }] + + - code: 0xf92d + mnemonic: color_change + params: [] + stack_params: [ + { type: Type.RegRef }, + { type: Type.RegRef }, + { type: Type.RegRef }, + { type: Type.RegRef }, + { type: Type.RegRef }, + ] + + - code: 0xf92e + mnemonic: send_statistic + params: [] + stack_params: [ + { type: dword }, + { type: dword }, + { type: dword }, + { type: dword }, + { type: dword }, + { type: dword }, + { type: dword }, + { type: dword }, + ] + + - code: 0xf92f + params: [] + stack_params: [{ type: dword }, { type: dword }] + + - code: 0xf930 + mnemonic: chat_box + params: [] + stack_params: [ + { type: dword }, + { type: dword }, + { type: dword }, + { type: dword }, + { type: dword }, + { type: string } + ] + + - code: 0xf931 + mnemonic: chat_bubble + params: [] + stack_params: [{ type: dword }, { type: string }] + + - code: 0xf933 + params: [{ type: Type.RegRef }] + + - code: 0xf934 + mnemonic: scroll_text + params: [] + stack_params: [ + { type: dword }, + { type: dword }, + { type: dword }, + { type: dword }, + { type: dword }, + { type: f32 }, + { type: Type.RegRef }, + { type: string } + ] + + - code: 0xf935 + mnemonic: gba_unknown1 + params: [] + + - code: 0xf936 + mnemonic: gba_unknown2 + params: [] + + - code: 0xf937 + mnemonic: gba_unknown3 + params: [] + + - code: 0xf938 + mnemonic: add_damage_to + params: + - type: dword + - type: dword + stack: pop + + - code: 0xf939 + mnemonic: item_delete3 + params: + - type: dword + stack: pop + + - code: 0xf93a + mnemonic: get_item_info + params: [] + stack_params: [{ type: dword }, { type: Type.RegRef }] + + - code: 0xf93b + mnemonic: item_packing1 + params: + - type: dword + stack: pop + + - code: 0xf93c + mnemonic: item_packing2 + params: + - type: dword + - type: dword + stack: pop + + - code: 0xf93d + mnemonic: get_lang_setting + params: [] + stack_params: [{ type: Type.RegRef }] + + - code: 0xf93e + mnemonic: prepare_statistic + params: + - type: dword + - type: i_label + - type: i_label + stack: pop + + - code: 0xf93f + mnemonic: keyword_detect + params: [] + + - code: 0xf940 + mnemonic: keyword + params: [] + stack_params: [{ type: Type.RegRef }, { type: dword }, { type: string }] + + - code: 0xf941 + mnemonic: get_guildcard_num + params: [] + stack_params: [{ type: dword }, { type: Type.RegRef }] + + - code: 0xf944 + mnemonic: get_wrap_status + params: [] + stack_params: [{ type: dword }, { type: Type.RegRef }] + + - code: 0xf945 + mnemonic: initial_floor + params: + - type: dword + stack: pop + + - code: 0xf946 + mnemonic: sin + params: [] + stack_params: [{ type: Type.RegRef }, { type: dword }] + + - code: 0xf947 + mnemonic: cos + params: [] + stack_params: [{ type: Type.RegRef }, { type: dword }] + + - code: 0xf94a + mnemonic: boss_is_dead2 + params: [{ type: Type.RegRef }] + + - code: 0xf94b + params: [{ type: Type.RegRef }] + + - code: 0xf94c + params: [{ type: Type.RegRef }] + + - code: 0xf94d + mnemonic: is_there_cardbattle + params: [{ type: Type.RegRef }] + + - code: 0xf950 + mnemonic: bb_p2_menu + params: + - type: dword + stack: pop + + - code: 0xf951 + mnemonic: bb_map_designate + params: [{ type: byte }, { type: word }, { type: byte }, { type: byte }] + + - code: 0xf952 + mnemonic: bb_get_number_in_pack + params: [{ type: Type.RegRef }] + + - code: 0xf953 + mnemonic: bb_swap_item + params: [] + stack_params: [ + { type: dword }, + { type: dword }, + { type: dword }, + { type: dword }, + { type: dword }, + { type: dword }, + { type: i_label }, + { type: i_label } + ] + + - code: 0xf954 + mnemonic: bb_check_wrap + params: [] + stack_params: [{ type: Type.RegRef }, { type: Type.RegRef }] + + - code: 0xf955 + mnemonic: bb_exchange_pd_item + params: [] + stack_params: [ + { type: Type.RegRef }, + { type: Type.RegRef }, + { type: Type.RegRef }, + { type: i_label }, + { type: i_label } + ] + + - code: 0xf956 + mnemonic: bb_exchange_pd_srank + params: [] + stack_params: [ + { type: Type.RegRef }, + { type: Type.RegRef }, + { type: Type.RegRef }, + { type: Type.RegRef }, + { type: Type.RegRef }, + { type: i_label }, + { type: i_label } + ] + + - code: 0xf957 + mnemonic: bb_exchange_pd_special + params: [] + stack_params: [ + { type: Type.RegRef }, + { type: Type.RegRef }, + { type: Type.RegRef }, + { type: Type.RegRef }, + { type: Type.RegRef }, + { type: dword }, + { type: i_label }, + { type: i_label } + ] + + - code: 0xf958 + mnemonic: bb_exchange_pd_percent + params: [] + stack_params: [ + { type: Type.RegRef }, + { type: Type.RegRef }, + { type: Type.RegRef }, + { type: Type.RegRef }, + { type: Type.RegRef }, + { type: dword }, + { type: i_label }, + { type: i_label } + ] + + - code: 0xf959 + params: + - type: dword + stack: pop + + - code: 0xf95c + mnemonic: bb_exchange_slt + params: [] + stack_params: [ + { type: dword }, + { type: Type.RegRef }, + { type: i_label }, + { type: i_label } + ] + + - code: 0xf95d + mnemonic: bb_exchange_pc + params: [] + + - code: 0xf95e + mnemonic: bb_box_create_bp + params: + - type: dword + - type: float + - type: float + stack: pop + + - code: 0xf95f + mnemonic: bb_exchange_pt + params: [] + stack_params: [ + { type: Type.RegRef }, + { type: Type.RegRef }, + { type: dword }, + { type: i_label }, + { type: i_label } + ] + + - code: 0xf960 + params: + - type: dword + stack: pop diff --git a/src/data_formats/parsing/quest/bin.ts b/src/data_formats/parsing/quest/bin.ts index f018fca9..f4d54bda 100644 --- a/src/data_formats/parsing/quest/bin.ts +++ b/src/data_formats/parsing/quest/bin.ts @@ -624,7 +624,7 @@ function parse_instruction_arguments(cursor: Cursor, opcode: Opcode): Arg[] { case Type.F32: args.push({ value: cursor.f32(), size: 4 }); break; - case Type.Register: + case Type.RegRef: args.push({ value: cursor.u8(), size: 1 }); break; case Type.ILabel: @@ -708,7 +708,7 @@ function write_object_code( case Type.F32: cursor.write_f32(arg.value); break; - case Type.Register: + case Type.RegRef: cursor.write_u8(arg.value); break; case Type.ILabel: diff --git a/src/data_formats/parsing/quest/opcodes.ts b/src/data_formats/parsing/quest/opcodes.ts index 2c618700..6ed6f179 100644 --- a/src/data_formats/parsing/quest/opcodes.ts +++ b/src/data_formats/parsing/quest/opcodes.ts @@ -1,4960 +1,5856 @@ /** - * Instruction parameter types. + * Opcode parameter type. */ -export enum Type { - /** - * Unsigned 8-bit integer. - */ - U8, - /** - * Unsigned 16-bit integer. - */ - U16, - /** - * Unsigned 32-bit integer. - */ - U32, - /** - * Signed 32-bit integer. - */ - I32, - /** - * 32-Bit floating point number. - */ - F32, - /** - * Register reference. - */ - Register, - /** - * Named reference to an instruction. - */ - ILabel, - /** - * Named reference to a data segment. - */ - DLabel, - /** - * Arbitrary amount of U8 arguments. - */ - U8Var, - /** - * Arbitrary amount of ILabel arguments. - */ - ILabelVar, - /** - * String of arbitrary size. - */ - String, +export class Type {} +export const TYPE = new Type(); + +export class ValueType extends Type {} +export const TYPE_VALUE = new ValueType(); + +export class RefType extends Type {} +export const TYPE_REF = new RefType(); + +class PointerType extends Type {} +export const TYPE_POINTER = new PointerType(); + +/** + * Unsigned 8-bit integer. + */ +class U8Type extends ValueType {} +export const TYPE_U8 = new U8Type(); + +/** + * Unsigned 16-bit integer. + */ +class U16Type extends ValueType {} +export const TYPE_U16 = new U16Type(); + +/** + * Unsigned 32-bit integer. + */ +class U32Type extends ValueType {} +export const TYPE_U32 = new U32Type(); + +/** + * Signed 32-bit integer. + */ +class I32Type extends ValueType {} +export const TYPE_I32 = new I32Type(); + +/** + * 32-Bit floating point number. + */ +class F32Type extends ValueType {} +export const TYPE_F32 = new F32Type(); + +/** + * Named reference to an instruction. + */ +class ILabelType extends ValueType {} +export const TYPE_I_LABEL = new ILabelType(); + +/** + * Named reference to a data segment. + */ +class DLabelType extends ValueType {} +export const TYPE_D_LABEL = new DLabelType(); + +/** + * String of arbitrary size. + */ +class StringType extends ValueType {} +export const TYPE_STRING = new StringType(); + +/** + * Arbitrary amount of instruction labels. + */ +class ILabelVarType extends ValueType {} +export const TYPE_I_LABEL_VAR = new ILabelVarType(); + +/** + * Reference to one or more registers. + */ +class RegRefType extends RefType {} +export const TYPE_REG_REF = new RegRefType(); + +/** + * Reference to a fixed amount of consecutive registers of specific types. + */ +export class RegTupRefType extends RefType { + readonly types: ValueType[]; + + constructor(...types: ValueType[]) { + super(); + this.types = types; + } } +/** + * Arbitrary amount of register references. + */ +class RegRefVarType extends RefType {} +export const TYPE_REG_REF_VAR = new RegRefVarType(); + export type Param = { type: Type; + /** + * True if the registers referenced are read by this parameter's opcode. Only set when type is a register reference. + */ + read?: boolean; + /** + * True if the registers referenced are written to by this parameter's opcode. Only set when type is a register reference. + */ + write?: boolean; + /** + * Documentation string. + */ + doc?: string; }; export const OPCODES: Opcode[] = []; /** - * Script object code instruction. Invoked by {@link ../bin/Instruction}s. + * Opcode for script object code. Invoked by {@link ../bin/Instruction}s. */ export class Opcode { /** - * Byte size of the instruction code, either 1 or 2. + * 1- Or 2-byte representation of this opcode as used in object code. + */ + readonly code: number; + /** + * String representation of this opcde as used in assembly. + */ + readonly mnemonic: string; + /** + * Documentation string. + */ + readonly doc?: string; + /** + * Byte size of the opcode, either 1 or 2. */ readonly size: number; + /** + * Directly passed in arguments. + */ + readonly params: Param[]; + /** + * If true, this opcode pushes arguments onto the stack. + */ + readonly push_stack: boolean; + /** + * Arguments passed in via the stack. + * These arguments are popped from the stack when the opcode is executed. + */ + readonly stack_params: Param[]; - constructor( - /** - * 1- Or 2-byte instruction code used to invoke this opcode. - */ - readonly code: number, - readonly mnemonic: string, - /** - * Directly passed in arguments. - */ - readonly params: Param[], - /** - * If true, this opcode pushes arguments onto the stack. - */ - readonly push_stack: boolean, - /** - * Arguments passed in via the stack. - * These arguments are popped from the stack after the opcode has executed. - */ - readonly stack_params: Param[] - ) { + constructor({ + code, + mnemonic, + doc, + params, + push_stack, + stack_params, + }: { + code: number; + mnemonic: string; + doc?: string; + params: Param[]; + push_stack: boolean; + stack_params: Param[]; + }) { + this.code = code; + this.mnemonic = mnemonic; + this.doc = doc; this.size = this.code < 256 ? 1 : 2; + this.params = params; + this.push_stack = push_stack; + this.stack_params = stack_params; } - static readonly nop = (OPCODES[0x00] = new Opcode(0x00, "nop", [], false, [])); - static readonly ret = (OPCODES[0x01] = new Opcode(0x01, "ret", [], false, [])); - static readonly sync = (OPCODES[0x02] = new Opcode(0x02, "sync", [], false, [])); - static readonly exit = (OPCODES[0x03] = new Opcode(0x03, "exit", [], false, [ - { type: Type.U32 }, - ])); - static readonly thread = (OPCODES[0x04] = new Opcode( - 0x04, - "thread", - [{ type: Type.ILabel }], - false, - [] - )); - static readonly va_start = (OPCODES[0x05] = new Opcode(0x05, "va_start", [], false, [])); - static readonly va_end = (OPCODES[0x06] = new Opcode(0x06, "va_end", [], false, [])); - static readonly va_call = (OPCODES[0x07] = new Opcode( - 0x07, - "va_call", - [{ type: Type.ILabel }], - false, - [] - )); - static readonly let = (OPCODES[0x08] = new Opcode( - 0x08, - "let", - [{ type: Type.Register }, { type: Type.Register }], - false, - [] - )); - static readonly leti = (OPCODES[0x09] = new Opcode( - 0x09, - "leti", - [{ type: Type.Register }, { type: Type.I32 }], - false, - [] - )); - static readonly letb = (OPCODES[0x0a] = new Opcode( - 0x0a, - "letb", - [{ type: Type.Register }, { type: Type.U8 }], - false, - [] - )); - static readonly letw = (OPCODES[0x0b] = new Opcode( - 0x0b, - "letw", - [{ type: Type.Register }, { type: Type.U16 }], - false, - [] - )); - // Sets a register to the memory offset of a register. Not used by Sega. - static readonly leta = (OPCODES[0x0c] = new Opcode( - 0x0c, - "leta", - [{ type: Type.Register }, { type: Type.Register }], - false, - [] - )); - // Sets a register to the memory offset of a label. Not used by Sega. - static readonly leto = (OPCODES[0x0d] = new Opcode( - 0x0d, - "leto", - [{ type: Type.Register }, { type: Type.U16 /* ILabel or DLabel */ }], - false, - [] - )); - static readonly unknown_0e = (OPCODES[0x0e] = new Opcode(0x0e, "unknown_0e", [], false, [])); - static readonly unknown_0f = (OPCODES[0x0f] = new Opcode(0x0f, "unknown_0f", [], false, [])); - static readonly set = (OPCODES[0x10] = new Opcode( - 0x10, - "set", - [{ type: Type.Register }], - false, - [] - )); - static readonly clear = (OPCODES[0x11] = new Opcode( - 0x11, - "clear", - [{ type: Type.Register }], - false, - [] - )); - static readonly rev = (OPCODES[0x12] = new Opcode( - 0x12, - "rev", - [{ type: Type.Register }], - false, - [] - )); - static readonly gset = (OPCODES[0x13] = new Opcode( - 0x13, - "gset", - [{ type: Type.U16 }], - false, - [] - )); - static readonly gclear = (OPCODES[0x14] = new Opcode( - 0x14, - "gclear", - [{ type: Type.U16 }], - false, - [] - )); - static readonly grev = (OPCODES[0x15] = new Opcode( - 0x15, - "grev", - [{ type: Type.U16 }], - false, - [] - )); - static readonly glet = (OPCODES[0x16] = new Opcode( - 0x16, - "glet", - [{ type: Type.U16 }], - false, - [] - )); - static readonly gget = (OPCODES[0x17] = new Opcode( - 0x17, - "gget", - [{ type: Type.U16 }, { type: Type.Register }], - false, - [] - )); - static readonly add = (OPCODES[0x18] = new Opcode( - 0x18, - "add", - [{ type: Type.Register }, { type: Type.Register }], - false, - [] - )); - static readonly addi = (OPCODES[0x19] = new Opcode( - 0x19, - "addi", - [{ type: Type.Register }, { type: Type.I32 }], - false, - [] - )); - static readonly sub = (OPCODES[0x1a] = new Opcode( - 0x1a, - "sub", - [{ type: Type.Register }, { type: Type.Register }], - false, - [] - )); - static readonly subi = (OPCODES[0x1b] = new Opcode( - 0x1b, - "subi", - [{ type: Type.Register }, { type: Type.I32 }], - false, - [] - )); - static readonly mul = (OPCODES[0x1c] = new Opcode( - 0x1c, - "mul", - [{ type: Type.Register }, { type: Type.Register }], - false, - [] - )); - static readonly muli = (OPCODES[0x1d] = new Opcode( - 0x1d, - "muli", - [{ type: Type.Register }, { type: Type.I32 }], - false, - [] - )); - static readonly div = (OPCODES[0x1e] = new Opcode( - 0x1e, - "div", - [{ type: Type.Register }, { type: Type.Register }], - false, - [] - )); - static readonly divi = (OPCODES[0x1f] = new Opcode( - 0x1f, - "divi", - [{ type: Type.Register }, { type: Type.I32 }], - false, - [] - )); - static readonly and = (OPCODES[0x20] = new Opcode( - 0x20, - "and", - [{ type: Type.Register }, { type: Type.Register }], - false, - [] - )); - static readonly andi = (OPCODES[0x21] = new Opcode( - 0x21, - "andi", - [{ type: Type.Register }, { type: Type.I32 }], - false, - [] - )); - static readonly or = (OPCODES[0x22] = new Opcode( - 0x22, - "or", - [{ type: Type.Register }, { type: Type.Register }], - false, - [] - )); - static readonly ori = (OPCODES[0x23] = new Opcode( - 0x23, - "ori", - [{ type: Type.Register }, { type: Type.I32 }], - false, - [] - )); - static readonly xor = (OPCODES[0x24] = new Opcode( - 0x24, - "xor", - [{ type: Type.Register }, { type: Type.Register }], - false, - [] - )); - static readonly xori = (OPCODES[0x25] = new Opcode( - 0x25, - "xori", - [{ type: Type.Register }, { type: Type.I32 }], - false, - [] - )); - static readonly mod = (OPCODES[0x26] = new Opcode( - 0x26, - "mod", - [{ type: Type.Register }, { type: Type.Register }], - false, - [] - )); - static readonly modi = (OPCODES[0x27] = new Opcode( - 0x27, - "modi", - [{ type: Type.Register }, { type: Type.I32 }], - false, - [] - )); - static readonly jmp = (OPCODES[0x28] = new Opcode( - 0x28, - "jmp", - [{ type: Type.ILabel }], - false, - [] - )); - static readonly call = (OPCODES[0x29] = new Opcode( - 0x29, - "call", - [{ type: Type.ILabel }], - false, - [] - )); - static readonly jmp_on = (OPCODES[0x2a] = new Opcode( - 0x2a, - "jmp_on", - [{ type: Type.ILabel }, { type: Type.U8Var }], - false, - [] - )); - static readonly jmp_off = (OPCODES[0x2b] = new Opcode( - 0x2b, - "jmp_off", - [{ type: Type.ILabel }, { type: Type.U8Var }], - false, - [] - )); - static readonly jmp_e = (OPCODES[0x2c] = new Opcode( - 0x2c, - "jmp_=", - [{ type: Type.Register }, { type: Type.Register }, { type: Type.ILabel }], - false, - [] - )); - static readonly jmpi_e = (OPCODES[0x2d] = new Opcode( - 0x2d, - "jmpi_=", - [{ type: Type.Register }, { type: Type.I32 }, { type: Type.ILabel }], - false, - [] - )); - static readonly jmp_ne = (OPCODES[0x2e] = new Opcode( - 0x2e, - "jmp_!=", - [{ type: Type.Register }, { type: Type.Register }, { type: Type.ILabel }], - false, - [] - )); - static readonly jmpi_ne = (OPCODES[0x2f] = new Opcode( - 0x2f, - "jmpi_!=", - [{ type: Type.Register }, { type: Type.I32 }, { type: Type.ILabel }], - false, - [] - )); - static readonly ujmp_g = (OPCODES[0x30] = new Opcode( - 0x30, - "ujmp_>", - [{ type: Type.Register }, { type: Type.Register }, { type: Type.ILabel }], - false, - [] - )); - static readonly ujmpi_g = (OPCODES[0x31] = new Opcode( - 0x31, - "ujmpi_>", - [{ type: Type.Register }, { type: Type.U32 }, { type: Type.ILabel }], - false, - [] - )); - static readonly jmp_g = (OPCODES[0x32] = new Opcode( - 0x32, - "jmp_>", - [{ type: Type.Register }, { type: Type.Register }, { type: Type.ILabel }], - false, - [] - )); - static readonly jmpi_g = (OPCODES[0x33] = new Opcode( - 0x33, - "jmpi_>", - [{ type: Type.Register }, { type: Type.I32 }, { type: Type.ILabel }], - false, - [] - )); - static readonly ujmp_l = (OPCODES[0x34] = new Opcode( - 0x34, - "ujmp_<", - [{ type: Type.Register }, { type: Type.Register }, { type: Type.ILabel }], - false, - [] - )); - static readonly ujmpi_l = (OPCODES[0x35] = new Opcode( - 0x35, - "ujmpi_<", - [{ type: Type.Register }, { type: Type.U32 }, { type: Type.ILabel }], - false, - [] - )); - static readonly jmp_l = (OPCODES[0x36] = new Opcode( - 0x36, - "jmp_<", - [{ type: Type.Register }, { type: Type.Register }, { type: Type.ILabel }], - false, - [] - )); - static readonly jmpi_l = (OPCODES[0x37] = new Opcode( - 0x37, - "jmpi_<", - [{ type: Type.Register }, { type: Type.I32 }, { type: Type.ILabel }], - false, - [] - )); - static readonly ujmp_ge = (OPCODES[0x38] = new Opcode( - 0x38, - "ujmp_>=", - [{ type: Type.Register }, { type: Type.Register }, { type: Type.ILabel }], - false, - [] - )); - static readonly ujmpi_ge = (OPCODES[0x39] = new Opcode( - 0x39, - "ujmpi_>=", - [{ type: Type.Register }, { type: Type.U32 }, { type: Type.ILabel }], - false, - [] - )); - static readonly jmp_ge = (OPCODES[0x3a] = new Opcode( - 0x3a, - "jmp_>=", - [{ type: Type.Register }, { type: Type.Register }, { type: Type.ILabel }], - false, - [] - )); - static readonly jmpi_ge = (OPCODES[0x3b] = new Opcode( - 0x3b, - "jmpi_>=", - [{ type: Type.Register }, { type: Type.I32 }, { type: Type.ILabel }], - false, - [] - )); - static readonly ujmp_le = (OPCODES[0x3c] = new Opcode( - 0x3c, - "ujmp_<=", - [{ type: Type.Register }, { type: Type.Register }, { type: Type.ILabel }], - false, - [] - )); - static readonly ujmpi_le = (OPCODES[0x3d] = new Opcode( - 0x3d, - "ujmpi_<=", - [{ type: Type.Register }, { type: Type.U32 }, { type: Type.ILabel }], - false, - [] - )); - static readonly jmp_le = (OPCODES[0x3e] = new Opcode( - 0x3e, - "jmp_<=", - [{ type: Type.Register }, { type: Type.Register }, { type: Type.ILabel }], - false, - [] - )); - static readonly jmpi_le = (OPCODES[0x3f] = new Opcode( - 0x3f, - "jmpi_<=", - [{ type: Type.Register }, { type: Type.I32 }, { type: Type.ILabel }], - false, - [] - )); - static readonly switch_jmp = (OPCODES[0x40] = new Opcode( - 0x40, - "switch_jmp", - [{ type: Type.Register }, { type: Type.ILabelVar }], - false, - [] - )); - static readonly switch_call = (OPCODES[0x41] = new Opcode( - 0x41, - "switch_call", - [{ type: Type.Register }, { type: Type.ILabelVar }], - false, - [] - )); - static readonly stack_push = (OPCODES[0x42] = new Opcode( - 0x42, - "stack_push", - [{ type: Type.Register }], - false, - [] - )); - static readonly stack_pop = (OPCODES[0x43] = new Opcode( - 0x43, - "stack_pop", - [{ type: Type.Register }], - false, - [] - )); - static readonly stack_pushm = (OPCODES[0x44] = new Opcode( - 0x44, - "stack_pushm", - [{ type: Type.Register }, { type: Type.U32 }], - false, - [] - )); - static readonly stack_popm = (OPCODES[0x45] = new Opcode( - 0x45, - "stack_popm", - [{ type: Type.Register }, { type: Type.U32 }], - false, - [] - )); - static readonly unknown_46 = (OPCODES[0x46] = new Opcode(0x46, "unknown_46", [], false, [])); - static readonly unknown_47 = (OPCODES[0x47] = new Opcode(0x47, "unknown_47", [], false, [])); - static readonly arg_pushr = (OPCODES[0x48] = new Opcode( - 0x48, - "arg_pushr", - [{ type: Type.Register }], - true, - [] - )); - static readonly arg_pushl = (OPCODES[0x49] = new Opcode( - 0x49, - "arg_pushl", - [{ type: Type.I32 }], - true, - [] - )); - static readonly arg_pushb = (OPCODES[0x4a] = new Opcode( - 0x4a, - "arg_pushb", - [{ type: Type.U8 }], - true, - [] - )); - static readonly arg_pushw = (OPCODES[0x4b] = new Opcode( - 0x4b, - "arg_pushw", - [{ type: Type.U16 }], - true, - [] - )); - static readonly unknown_4c = (OPCODES[0x4c] = new Opcode(0x4c, "unknown_4c", [], false, [])); - static readonly unknown_4d = (OPCODES[0x4d] = new Opcode(0x4d, "unknown_4d", [], false, [])); - static readonly arg_pushs = (OPCODES[0x4e] = new Opcode( - 0x4e, - "arg_pushs", - [{ type: Type.String }], - true, - [] - )); - static readonly unknown_4f = (OPCODES[0x4f] = new Opcode( - 0x4f, - "unknown_4f", - [{ type: Type.Register }, { type: Type.Register }], - false, - [] - )); - static readonly message = (OPCODES[0x50] = new Opcode(0x50, "message", [], false, [ - { type: Type.U32 }, - { type: Type.String }, - ])); - static readonly list = (OPCODES[0x51] = new Opcode(0x51, "list", [], false, [ - { type: Type.Register }, - { type: Type.String }, - ])); - static readonly fadein = (OPCODES[0x52] = new Opcode(0x52, "fadein", [], false, [])); - static readonly fadeout = (OPCODES[0x53] = new Opcode(0x53, "fadeout", [], false, [])); - static readonly se = (OPCODES[0x54] = new Opcode(0x54, "se", [], false, [{ type: Type.U32 }])); - static readonly bgm = (OPCODES[0x55] = new Opcode(0x55, "bgm", [], false, [ - { type: Type.U32 }, - ])); - static readonly unknown_56 = (OPCODES[0x56] = new Opcode(0x56, "unknown_56", [], false, [])); - static readonly unknown_57 = (OPCODES[0x57] = new Opcode(0x57, "unknown_57", [], false, [])); - static readonly enable = (OPCODES[0x58] = new Opcode(0x58, "enable", [], false, [ - { type: Type.U32 }, - ])); - static readonly disable = (OPCODES[0x59] = new Opcode(0x59, "disable", [], false, [ - { type: Type.U32 }, - ])); - static readonly window_msg = (OPCODES[0x5a] = new Opcode(0x5a, "window_msg", [], false, [ - { type: Type.String }, - ])); - static readonly add_msg = (OPCODES[0x5b] = new Opcode(0x5b, "add_msg", [], false, [ - { type: Type.String }, - ])); - static readonly mesend = (OPCODES[0x5c] = new Opcode(0x5c, "mesend", [], false, [])); - static readonly gettime = (OPCODES[0x5d] = new Opcode( - 0x5d, - "gettime", - [{ type: Type.Register }], - false, - [] - )); - static readonly winend = (OPCODES[0x5e] = new Opcode(0x5e, "winend", [], false, [])); - static readonly unknown_5f = (OPCODES[0x5f] = new Opcode(0x5f, "unknown_5f", [], false, [])); - static readonly npc_crt_v3 = (OPCODES[0x60] = new Opcode( - 0x60, - "npc_crt_v3", - [{ type: Type.Register }], - false, - [] - )); - static readonly npc_stop = (OPCODES[0x61] = new Opcode(0x61, "npc_stop", [], false, [ - { type: Type.Register }, - ])); - static readonly npc_play = (OPCODES[0x62] = new Opcode(0x62, "npc_play", [], false, [ - { type: Type.U32 }, - ])); - static readonly npc_kill = (OPCODES[0x63] = new Opcode(0x63, "npc_kill", [], false, [ - { type: Type.Register }, - ])); - static readonly npc_nont = (OPCODES[0x64] = new Opcode(0x64, "npc_nont", [], false, [])); - static readonly npc_talk = (OPCODES[0x65] = new Opcode(0x65, "npc_talk", [], false, [])); - static readonly npc_crp_v3 = (OPCODES[0x66] = new Opcode( - 0x66, - "npc_crp_v3", - [{ type: Type.Register }], - false, - [] - )); - static readonly unknown_67 = (OPCODES[0x67] = new Opcode(0x67, "unknown_67", [], false, [])); - static readonly create_pipe = (OPCODES[0x68] = new Opcode(0x68, "create_pipe", [], false, [ - { type: Type.U32 }, - ])); - static readonly p_hpstat_v3 = (OPCODES[0x69] = new Opcode(0x69, "p_hpstat_v3", [], false, [ - { type: Type.Register }, - { type: Type.U32 }, - ])); - static readonly p_dead_v3 = (OPCODES[0x6a] = new Opcode(0x6a, "p_dead_v3", [], false, [ - { type: Type.Register }, - { type: Type.U32 }, - ])); - static readonly p_disablewarp = (OPCODES[0x6b] = new Opcode( - 0x6b, - "p_disablewarp", - [], - false, - [] - )); - static readonly p_enablewarp = (OPCODES[0x6c] = new Opcode( - 0x6c, - "p_enablewarp", - [], - false, - [] - )); - static readonly p_move_v3 = (OPCODES[0x6d] = new Opcode( - 0x6d, - "p_move_v3", - [{ type: Type.Register }], - false, - [] - )); - static readonly p_look = (OPCODES[0x6e] = new Opcode(0x6e, "p_look", [], false, [ - { type: Type.U32 }, - ])); - static readonly unknown_6f = (OPCODES[0x6f] = new Opcode(0x6f, "unknown_6f", [], false, [])); - static readonly p_action_disable = (OPCODES[0x70] = new Opcode( - 0x70, - "p_action_disable", - [], - false, - [] - )); - static readonly p_action_enable = (OPCODES[0x71] = new Opcode( - 0x71, - "p_action_enable", - [], - false, - [] - )); - static readonly disable_movement1 = (OPCODES[0x72] = new Opcode( - 0x72, - "disable_movement1", - [], - false, - [{ type: Type.Register }] - )); - static readonly enable_movement1 = (OPCODES[0x73] = new Opcode( - 0x73, - "enable_movement1", - [], - false, - [{ type: Type.Register }] - )); - static readonly p_noncol = (OPCODES[0x74] = new Opcode(0x74, "p_noncol", [], false, [])); - static readonly p_col = (OPCODES[0x75] = new Opcode(0x75, "p_col", [], false, [])); - static readonly p_setpos = (OPCODES[0x76] = new Opcode(0x76, "p_setpos", [], false, [ - { type: Type.U32 }, - { type: Type.Register }, - ])); - static readonly p_return_guild = (OPCODES[0x77] = new Opcode( - 0x77, - "p_return_guild", - [], - false, - [] - )); - static readonly p_talk_guild = (OPCODES[0x78] = new Opcode(0x78, "p_talk_guild", [], false, [ - { type: Type.U32 }, - ])); - static readonly npc_talk_pl_v3 = (OPCODES[0x79] = new Opcode( - 0x79, - "npc_talk_pl_v3", - [{ type: Type.Register }], - false, - [] - )); - static readonly npc_talk_kill = (OPCODES[0x7a] = new Opcode(0x7a, "npc_talk_kill", [], false, [ - { type: Type.U32 }, - ])); - static readonly npc_crtpk_v3 = (OPCODES[0x7b] = new Opcode( - 0x7b, - "npc_crtpk_v3", - [{ type: Type.Register }], - false, - [] - )); - static readonly npc_crppk_v3 = (OPCODES[0x7c] = new Opcode( - 0x7c, - "npc_crppk_v3", - [{ type: Type.Register }], - false, - [] - )); - static readonly npc_crptalk_v3 = (OPCODES[0x7d] = new Opcode( - 0x7d, - "npc_crptalk_v3", - [{ type: Type.Register }], - false, - [] - )); - static readonly p_look_at_v1 = (OPCODES[0x7e] = new Opcode(0x7e, "p_look_at_v1", [], false, [ - { type: Type.U32 }, - { type: Type.U32 }, - ])); - static readonly npc_crp_id_v3 = (OPCODES[0x7f] = new Opcode( - 0x7f, - "npc_crp_id_v3", - [{ type: Type.Register }], - false, - [] - )); - static readonly cam_quake = (OPCODES[0x80] = new Opcode(0x80, "cam_quake", [], false, [])); - static readonly cam_adj = (OPCODES[0x81] = new Opcode(0x81, "cam_adj", [], false, [])); - static readonly cam_zmin = (OPCODES[0x82] = new Opcode(0x82, "cam_zmin", [], false, [])); - static readonly cam_zmout = (OPCODES[0x83] = new Opcode(0x83, "cam_zmout", [], false, [])); - static readonly cam_pan_v3 = (OPCODES[0x84] = new Opcode( - 0x84, - "cam_pan_v3", - [{ type: Type.Register }], - false, - [] - )); - static readonly game_lev_super = (OPCODES[0x85] = new Opcode( - 0x85, - "game_lev_super", - [], - false, - [] - )); - static readonly game_lev_reset = (OPCODES[0x86] = new Opcode( - 0x86, - "game_lev_reset", - [], - false, - [] - )); - static readonly pos_pipe_v3 = (OPCODES[0x87] = new Opcode( - 0x87, - "pos_pipe_v3", - [{ type: Type.Register }], - false, - [] - )); - static readonly if_zone_clear = (OPCODES[0x88] = new Opcode( - 0x88, - "if_zone_clear", - [{ type: Type.Register }, { type: Type.Register }], - false, - [] - )); - static readonly chk_ene_num = (OPCODES[0x89] = new Opcode( - 0x89, - "chk_ene_num", - [{ type: Type.Register }], - false, - [] - )); - static readonly unhide_obj = (OPCODES[0x8a] = new Opcode( - 0x8a, - "unhide_obj", - [{ type: Type.Register }], - false, - [] - )); - static readonly unhide_ene = (OPCODES[0x8b] = new Opcode( - 0x8b, - "unhide_ene", - [{ type: Type.Register }], - false, - [] - )); - static readonly at_coords_call = (OPCODES[0x8c] = new Opcode( - 0x8c, - "at_coords_call", - [{ type: Type.Register }], - false, - [] - )); - static readonly at_coords_talk = (OPCODES[0x8d] = new Opcode( - 0x8d, - "at_coords_talk", - [{ type: Type.Register }], - false, - [] - )); - static readonly col_npcin = (OPCODES[0x8e] = new Opcode( - 0x8e, - "col_npcin", - [{ type: Type.Register }], - false, - [] - )); - static readonly col_npcinr = (OPCODES[0x8f] = new Opcode( - 0x8f, - "col_npcinr", - [{ type: Type.Register }], - false, - [] - )); - static readonly switch_on = (OPCODES[0x90] = new Opcode(0x90, "switch_on", [], false, [ - { type: Type.U32 }, - ])); - static readonly switch_off = (OPCODES[0x91] = new Opcode(0x91, "switch_off", [], false, [ - { type: Type.U32 }, - ])); - static readonly playbgm_epi = (OPCODES[0x92] = new Opcode(0x92, "playbgm_epi", [], false, [ - { type: Type.U32 }, - ])); - static readonly set_mainwarp = (OPCODES[0x93] = new Opcode(0x93, "set_mainwarp", [], false, [ - { type: Type.U32 }, - ])); - static readonly set_obj_param = (OPCODES[0x94] = new Opcode( - 0x94, - "set_obj_param", - [{ type: Type.Register }, { type: Type.Register }], - false, - [] - )); - static readonly set_floor_handler = (OPCODES[0x95] = new Opcode( - 0x95, - "set_floor_handler", - [], - false, - [{ type: Type.U32 }, { type: Type.ILabel }] - )); - static readonly clr_floor_handler = (OPCODES[0x96] = new Opcode( - 0x96, - "clr_floor_handler", - [], - false, - [{ type: Type.U32 }] - )); - static readonly col_plinaw = (OPCODES[0x97] = new Opcode( - 0x97, - "col_plinaw", - [{ type: Type.Register }], - false, - [] - )); - static readonly hud_hide = (OPCODES[0x98] = new Opcode(0x98, "hud_hide", [], false, [])); - static readonly hud_show = (OPCODES[0x99] = new Opcode(0x99, "hud_show", [], false, [])); - static readonly cine_enable = (OPCODES[0x9a] = new Opcode(0x9a, "cine_enable", [], false, [])); - static readonly cine_disable = (OPCODES[0x9b] = new Opcode( - 0x9b, - "cine_disable", - [], - false, - [] - )); - static readonly unknown_9c = (OPCODES[0x9c] = new Opcode(0x9c, "unknown_9c", [], false, [])); - static readonly unknown_9d = (OPCODES[0x9d] = new Opcode(0x9d, "unknown_9d", [], false, [])); - static readonly unknown_9e = (OPCODES[0x9e] = new Opcode(0x9e, "unknown_9e", [], false, [])); - static readonly unknown_9f = (OPCODES[0x9f] = new Opcode(0x9f, "unknown_9f", [], false, [])); - static readonly unknown_a0 = (OPCODES[0xa0] = new Opcode(0xa0, "unknown_a0", [], false, [])); - static readonly set_qt_failure = (OPCODES[0xa1] = new Opcode( - 0xa1, - "set_qt_failure", - [{ type: Type.ILabel }], - false, - [] - )); - static readonly set_qt_success = (OPCODES[0xa2] = new Opcode( - 0xa2, - "set_qt_success", - [{ type: Type.ILabel }], - false, - [] - )); - static readonly clr_qt_failure = (OPCODES[0xa3] = new Opcode( - 0xa3, - "clr_qt_failure", - [], - false, - [] - )); - static readonly clr_qt_success = (OPCODES[0xa4] = new Opcode( - 0xa4, - "clr_qt_success", - [], - false, - [] - )); - static readonly set_qt_cancel = (OPCODES[0xa5] = new Opcode( - 0xa5, - "set_qt_cancel", - [{ type: Type.ILabel }], - false, - [] - )); - static readonly clr_qt_cancel = (OPCODES[0xa6] = new Opcode( - 0xa6, - "clr_qt_cancel", - [], - false, - [] - )); - static readonly unknown_a7 = (OPCODES[0xa7] = new Opcode(0xa7, "unknown_a7", [], false, [])); - static readonly pl_walk_v3 = (OPCODES[0xa8] = new Opcode( - 0xa8, - "pl_walk_v3", - [{ type: Type.Register }], - false, - [] - )); - static readonly unknown_a9 = (OPCODES[0xa9] = new Opcode(0xa9, "unknown_a9", [], false, [])); - static readonly unknown_aa = (OPCODES[0xaa] = new Opcode(0xaa, "unknown_aa", [], false, [])); - static readonly unknown_ab = (OPCODES[0xab] = new Opcode(0xab, "unknown_ab", [], false, [])); - static readonly unknown_ac = (OPCODES[0xac] = new Opcode(0xac, "unknown_ac", [], false, [])); - static readonly unknown_ad = (OPCODES[0xad] = new Opcode(0xad, "unknown_ad", [], false, [])); - static readonly unknown_ae = (OPCODES[0xae] = new Opcode(0xae, "unknown_ae", [], false, [])); - static readonly unknown_af = (OPCODES[0xaf] = new Opcode(0xaf, "unknown_af", [], false, [])); - static readonly pl_add_meseta = (OPCODES[0xb0] = new Opcode(0xb0, "pl_add_meseta", [], false, [ - { type: Type.U32 }, - { type: Type.U32 }, - ])); - static readonly thread_stg = (OPCODES[0xb1] = new Opcode( - 0xb1, - "thread_stg", - [{ type: Type.ILabel }], - false, - [] - )); - static readonly del_obj_param = (OPCODES[0xb2] = new Opcode( - 0xb2, - "del_obj_param", - [{ type: Type.Register }], - false, - [] - )); - static readonly item_create = (OPCODES[0xb3] = new Opcode( - 0xb3, - "item_create", - [{ type: Type.Register }, { type: Type.Register }], - false, - [] - )); - static readonly item_create2 = (OPCODES[0xb4] = new Opcode( - 0xb4, - "item_create2", - [{ type: Type.Register }, { type: Type.Register }], - false, - [] - )); - static readonly item_delete = (OPCODES[0xb5] = new Opcode( - 0xb5, - "item_delete", - [{ type: Type.Register }, { type: Type.Register }], - false, - [] - )); - static readonly item_delete2 = (OPCODES[0xb6] = new Opcode( - 0xb6, - "item_delete2", - [{ type: Type.Register }, { type: Type.Register }], - false, - [] - )); - static readonly item_check = (OPCODES[0xb7] = new Opcode( - 0xb7, - "item_check", - [{ type: Type.Register }, { type: Type.Register }], - false, - [] - )); - static readonly setevt = (OPCODES[0xb8] = new Opcode(0xb8, "setevt", [], false, [ - { type: Type.U32 }, - ])); - static readonly get_difflvl = (OPCODES[0xb9] = new Opcode( - 0xb9, - "get_difflvl", - [{ type: Type.Register }], - false, - [] - )); - static readonly set_qt_exit = (OPCODES[0xba] = new Opcode( - 0xba, - "set_qt_exit", - [{ type: Type.ILabel }], - false, - [] - )); - static readonly clr_qt_exit = (OPCODES[0xbb] = new Opcode(0xbb, "clr_qt_exit", [], false, [])); - static readonly unknown_bc = (OPCODES[0xbc] = new Opcode(0xbc, "unknown_bc", [], false, [])); - static readonly unknown_bd = (OPCODES[0xbd] = new Opcode(0xbd, "unknown_bd", [], false, [])); - static readonly unknown_be = (OPCODES[0xbe] = new Opcode(0xbe, "unknown_be", [], false, [])); - static readonly unknown_bf = (OPCODES[0xbf] = new Opcode(0xbf, "unknown_bf", [], false, [])); - static readonly particle_v3 = (OPCODES[0xc0] = new Opcode( - 0xc0, - "particle_v3", - [{ type: Type.Register }], - false, - [] - )); - static readonly npc_text = (OPCODES[0xc1] = new Opcode(0xc1, "npc_text", [], false, [ - { type: Type.U32 }, - { type: Type.String }, - ])); - static readonly npc_chkwarp = (OPCODES[0xc2] = new Opcode(0xc2, "npc_chkwarp", [], false, [])); - static readonly pl_pkoff = (OPCODES[0xc3] = new Opcode(0xc3, "pl_pkoff", [], false, [])); - static readonly map_designate = (OPCODES[0xc4] = new Opcode( - 0xc4, - "map_designate", - [{ type: Type.Register }], - false, - [] - )); - static readonly masterkey_on = (OPCODES[0xc5] = new Opcode( - 0xc5, - "masterkey_on", - [], - false, - [] - )); - static readonly masterkey_off = (OPCODES[0xc6] = new Opcode( - 0xc6, - "masterkey_off", - [], - false, - [] - )); - static readonly window_time = (OPCODES[0xc7] = new Opcode(0xc7, "window_time", [], false, [])); - static readonly winend_time = (OPCODES[0xc8] = new Opcode(0xc8, "winend_time", [], false, [])); - static readonly winset_time = (OPCODES[0xc9] = new Opcode( - 0xc9, - "winset_time", - [{ type: Type.Register }], - false, - [] - )); - static readonly getmtime = (OPCODES[0xca] = new Opcode( - 0xca, - "getmtime", - [{ type: Type.Register }], - false, - [] - )); - static readonly set_quest_board_handler = (OPCODES[0xcb] = new Opcode( - 0xcb, - "set_quest_board_handler", - [], - false, - [{ type: Type.U32 }, { type: Type.ILabel }, { type: Type.String }] - )); - static readonly clear_quest_board_handler = (OPCODES[0xcc] = new Opcode( - 0xcc, - "clear_quest_board_handler", - [], - false, - [{ type: Type.U32 }] - )); - static readonly particle_id_v3 = (OPCODES[0xcd] = new Opcode( - 0xcd, - "particle_id_v3", - [{ type: Type.Register }], - false, - [] - )); - static readonly npc_crptalk_id_v3 = (OPCODES[0xce] = new Opcode( - 0xce, - "npc_crptalk_id_v3", - [{ type: Type.Register }], - false, - [] - )); - static readonly npc_lang_clean = (OPCODES[0xcf] = new Opcode( - 0xcf, - "npc_lang_clean", - [], - false, - [] - )); - static readonly pl_pkon = (OPCODES[0xd0] = new Opcode(0xd0, "pl_pkon", [], false, [])); - static readonly pl_chk_item2 = (OPCODES[0xd1] = new Opcode( - 0xd1, - "pl_chk_item2", - [{ type: Type.Register }, { type: Type.Register }], - false, - [] - )); - static readonly enable_mainmenu = (OPCODES[0xd2] = new Opcode( - 0xd2, - "enable_mainmenu", - [], - false, - [] - )); - static readonly disable_mainmenu = (OPCODES[0xd3] = new Opcode( - 0xd3, - "disable_mainmenu", - [], - false, - [] - )); - static readonly start_battlebgm = (OPCODES[0xd4] = new Opcode( - 0xd4, - "start_battlebgm", - [], - false, - [] - )); - static readonly end_battlebgm = (OPCODES[0xd5] = new Opcode( - 0xd5, - "end_battlebgm", - [], - false, - [] - )); - static readonly disp_msg_qb = (OPCODES[0xd6] = new Opcode(0xd6, "disp_msg_qb", [], false, [ - { type: Type.String }, - ])); - static readonly close_msg_qb = (OPCODES[0xd7] = new Opcode( - 0xd7, - "close_msg_qb", - [], - false, - [] - )); - static readonly set_eventflag_v3 = (OPCODES[0xd8] = new Opcode( - 0xd8, - "set_eventflag_v3", - [], - false, - [{ type: Type.U32 }, { type: Type.U32 }] - )); - static readonly sync_leti = (OPCODES[0xd9] = new Opcode(0xd9, "sync_leti", [], false, [])); - static readonly set_returnhunter = (OPCODES[0xda] = new Opcode( - 0xda, - "set_returnhunter", - [], - false, - [] - )); - static readonly set_returncity = (OPCODES[0xdb] = new Opcode( - 0xdb, - "set_returncity", - [], - false, - [] - )); - static readonly load_pvr = (OPCODES[0xdc] = new Opcode(0xdc, "load_pvr", [], false, [])); - static readonly load_midi = (OPCODES[0xdd] = new Opcode(0xdd, "load_midi", [], false, [])); - static readonly unknown_de = (OPCODES[0xde] = new Opcode(0xde, "unknown_de", [], false, [])); - static readonly npc_param_v3 = (OPCODES[0xdf] = new Opcode(0xdf, "npc_param_v3", [], false, [ - { type: Type.Register }, - { type: Type.U32 }, - ])); - static readonly pad_dragon = (OPCODES[0xe0] = new Opcode(0xe0, "pad_dragon", [], false, [])); - static readonly clear_mainwarp = (OPCODES[0xe1] = new Opcode( - 0xe1, - "clear_mainwarp", - [], - false, - [{ type: Type.U32 }] - )); - static readonly pcam_param_v3 = (OPCODES[0xe2] = new Opcode( - 0xe2, - "pcam_param_v3", - [{ type: Type.Register }], - false, - [] - )); - static readonly start_setevt_v3 = (OPCODES[0xe3] = new Opcode( - 0xe3, - "start_setevt_v3", - [], - false, - [{ type: Type.Register }, { type: Type.U32 }] - )); - static readonly warp_on = (OPCODES[0xe4] = new Opcode(0xe4, "warp_on", [], false, [])); - static readonly warp_off = (OPCODES[0xe5] = new Opcode(0xe5, "warp_off", [], false, [])); - static readonly get_slotnumber = (OPCODES[0xe6] = new Opcode( - 0xe6, - "get_slotnumber", - [{ type: Type.Register }], - false, - [] - )); - static readonly get_servernumber = (OPCODES[0xe7] = new Opcode( - 0xe7, - "get_servernumber", - [{ type: Type.Register }], - false, - [] - )); - static readonly set_eventflag2 = (OPCODES[0xe8] = new Opcode( - 0xe8, - "set_eventflag2", - [], - false, - [{ type: Type.U32 }, { type: Type.Register }] - )); - static readonly res = (OPCODES[0xe9] = new Opcode( - 0xe9, - "res", - [{ type: Type.Register }, { type: Type.Register }], - false, - [] - )); - static readonly unknown_ea = (OPCODES[0xea] = new Opcode( - 0xea, - "unknown_ea", - [{ type: Type.Register }, { type: Type.U32 }], - false, - [] - )); - static readonly enable_bgmctrl = (OPCODES[0xeb] = new Opcode( - 0xeb, - "enable_bgmctrl", - [], - false, - [{ type: Type.U32 }] - )); - static readonly sw_send = (OPCODES[0xec] = new Opcode( - 0xec, - "sw_send", - [{ type: Type.Register }], - false, - [] - )); - static readonly create_bgmctrl = (OPCODES[0xed] = new Opcode( - 0xed, - "create_bgmctrl", - [], - false, - [] - )); - static readonly pl_add_meseta2 = (OPCODES[0xee] = new Opcode( - 0xee, - "pl_add_meseta2", - [], - false, - [{ type: Type.U32 }] - )); - static readonly sync_register = (OPCODES[0xef] = new Opcode(0xef, "sync_register", [], false, [ - { type: Type.Register }, - { type: Type.U32 /* TODO: Can be U32 or Register. */ }, - ])); - static readonly send_regwork = (OPCODES[0xf0] = new Opcode( - 0xf0, - "send_regwork", - [], - false, - [] - )); - static readonly leti_fixed_camera_v3 = (OPCODES[0xf1] = new Opcode( - 0xf1, - "leti_fixed_camera_v3", - [{ type: Type.Register }], - false, - [] - )); - static readonly default_camera_pos1 = (OPCODES[0xf2] = new Opcode( - 0xf2, - "default_camera_pos1", - [], - false, - [] - )); - static readonly unknown_f3 = (OPCODES[0xf3] = new Opcode(0xf3, "unknown_f3", [], false, [])); - static readonly unknown_f4 = (OPCODES[0xf4] = new Opcode(0xf4, "unknown_f4", [], false, [])); - static readonly unknown_f5 = (OPCODES[0xf5] = new Opcode(0xf5, "unknown_f5", [], false, [])); - static readonly unknown_f6 = (OPCODES[0xf6] = new Opcode(0xf6, "unknown_f6", [], false, [])); - static readonly unknown_f7 = (OPCODES[0xf7] = new Opcode(0xf7, "unknown_f7", [], false, [])); - static readonly unknown_f8 = (OPCODES[0xf8] = new Opcode( - 0xf8, - "unknown_f8", - [{ type: Type.Register }], - false, - [] - )); - static readonly unknown_f9 = (OPCODES[0xf9] = new Opcode(0xf9, "unknown_f9", [], false, [])); - static readonly get_gc_number = (OPCODES[0xfa] = new Opcode( - 0xfa, - "get_gc_number", - [{ type: Type.Register }], - false, - [] - )); - static readonly unknown_fb = (OPCODES[0xfb] = new Opcode( - 0xfb, - "unknown_fb", - [{ type: Type.U16 }], - false, - [] - )); - static readonly unknown_fc = (OPCODES[0xfc] = new Opcode(0xfc, "unknown_fc", [], false, [])); - static readonly unknown_fd = (OPCODES[0xfd] = new Opcode(0xfd, "unknown_fd", [], false, [])); - static readonly unknown_fe = (OPCODES[0xfe] = new Opcode(0xfe, "unknown_fe", [], false, [])); - static readonly unknown_ff = (OPCODES[0xff] = new Opcode(0xff, "unknown_ff", [], false, [])); - static readonly unknown_f800 = (OPCODES[0xf800] = new Opcode( - 0xf800, - "unknown_f800", - [], - false, - [] - )); - static readonly set_chat_callback = (OPCODES[0xf801] = new Opcode( - 0xf801, - "set_chat_callback", - [], - false, - [{ type: Type.Register }, { type: Type.String }] - )); - static readonly unknown_f802 = (OPCODES[0xf802] = new Opcode( - 0xf802, - "unknown_f802", - [], - false, - [] - )); - static readonly unknown_f803 = (OPCODES[0xf803] = new Opcode( - 0xf803, - "unknown_f803", - [], - false, - [] - )); - static readonly unknown_f804 = (OPCODES[0xf804] = new Opcode( - 0xf804, - "unknown_f804", - [], - false, - [] - )); - static readonly unknown_f805 = (OPCODES[0xf805] = new Opcode( - 0xf805, - "unknown_f805", - [], - false, - [] - )); - static readonly unknown_f806 = (OPCODES[0xf806] = new Opcode( - 0xf806, - "unknown_f806", - [], - false, - [] - )); - static readonly unknown_f807 = (OPCODES[0xf807] = new Opcode( - 0xf807, - "unknown_f807", - [], - false, - [] - )); - static readonly get_difficulty_level2 = (OPCODES[0xf808] = new Opcode( - 0xf808, - "get_difficulty_level2", - [{ type: Type.Register }], - false, - [] - )); - static readonly get_number_of_player1 = (OPCODES[0xf809] = new Opcode( - 0xf809, - "get_number_of_player1", - [{ type: Type.Register }], - false, - [] - )); - static readonly get_coord_of_player = (OPCODES[0xf80a] = new Opcode( - 0xf80a, - "get_coord_of_player", - [{ type: Type.Register }, { type: Type.Register }], - false, - [] - )); - static readonly unknown_f80b = (OPCODES[0xf80b] = new Opcode( - 0xf80b, - "unknown_f80b", - [], - false, - [] - )); - static readonly unknown_f80c = (OPCODES[0xf80c] = new Opcode( - 0xf80c, - "unknown_f80c", - [], - false, - [] - )); - static readonly map_designate_ex = (OPCODES[0xf80d] = new Opcode( - 0xf80d, - "map_designate_ex", - [{ type: Type.Register }], - false, - [] - )); - static readonly unknown_f80e = (OPCODES[0xf80e] = new Opcode( - 0xf80e, - "unknown_f80e", - [], - false, - [{ type: Type.U32 }] - )); - static readonly unknown_f80f = (OPCODES[0xf80f] = new Opcode( - 0xf80f, - "unknown_f80f", - [], - false, - [{ type: Type.U32 }] - )); - static readonly ba_initial_floor = (OPCODES[0xf810] = new Opcode( - 0xf810, - "ba_initial_floor", - [], - false, - [{ type: Type.U32 }] - )); - static readonly set_ba_rules = (OPCODES[0xf811] = new Opcode( - 0xf811, - "set_ba_rules", - [], - false, - [] - )); - static readonly unknown_f812 = (OPCODES[0xf812] = new Opcode( - 0xf812, - "unknown_f812", - [], - false, - [{ type: Type.U32 }] - )); - static readonly unknown_f813 = (OPCODES[0xf813] = new Opcode( - 0xf813, - "unknown_f813", - [], - false, - [{ type: Type.U32 }] - )); - static readonly unknown_f814 = (OPCODES[0xf814] = new Opcode( - 0xf814, - "unknown_f814", - [], - false, - [{ type: Type.U32 }] - )); - static readonly unknown_f815 = (OPCODES[0xf815] = new Opcode( - 0xf815, - "unknown_f815", - [], - false, - [{ type: Type.U32 }] - )); - static readonly unknown_f816 = (OPCODES[0xf816] = new Opcode( - 0xf816, - "unknown_f816", - [], - false, - [{ type: Type.U32 }] - )); - static readonly unknown_f817 = (OPCODES[0xf817] = new Opcode( - 0xf817, - "unknown_f817", - [], - false, - [{ type: Type.U32 }] - )); - static readonly unknown_f818 = (OPCODES[0xf818] = new Opcode( - 0xf818, - "unknown_f818", - [], - false, - [{ type: Type.U32 }] - )); - static readonly unknown_f819 = (OPCODES[0xf819] = new Opcode( - 0xf819, - "unknown_f819", - [], - false, - [{ type: Type.U32 }] - )); - static readonly unknown_f81a = (OPCODES[0xf81a] = new Opcode( - 0xf81a, - "unknown_f81a", - [], - false, - [{ type: Type.U32 }] - )); - static readonly unknown_f81b = (OPCODES[0xf81b] = new Opcode( - 0xf81b, - "unknown_f81b", - [], - false, - [{ type: Type.U32 }] - )); - static readonly ba_disp_msg = (OPCODES[0xf81c] = new Opcode(0xf81c, "ba_disp_msg", [], false, [ - { type: Type.String }, - ])); - static readonly death_lvl_up = (OPCODES[0xf81d] = new Opcode( - 0xf81d, - "death_lvl_up", - [], - false, - [{ type: Type.U32 }] - )); - static readonly death_tech_lvl_up = (OPCODES[0xf81e] = new Opcode( - 0xf81e, - "death_tech_lvl_up", - [], - false, - [{ type: Type.U32 }] - )); - static readonly unknown_f81f = (OPCODES[0xf81f] = new Opcode( - 0xf81f, - "unknown_f81f", - [], - false, - [] - )); - static readonly cmode_stage = (OPCODES[0xf820] = new Opcode(0xf820, "cmode_stage", [], false, [ - { type: Type.U32 }, - ])); - static readonly unknown_f821 = (OPCODES[0xf821] = new Opcode( - 0xf821, - "unknown_f821", - [], - false, - [] - )); - static readonly unknown_f822 = (OPCODES[0xf822] = new Opcode( - 0xf822, - "unknown_f822", - [], - false, - [] - )); - static readonly unknown_f823 = (OPCODES[0xf823] = new Opcode( - 0xf823, - "unknown_f823", - [], - false, - [{ type: Type.U32 }] - )); - static readonly unknown_f824 = (OPCODES[0xf824] = new Opcode( - 0xf824, - "unknown_f824", - [], - false, - [{ type: Type.U32 }] - )); - static readonly exp_multiplication = (OPCODES[0xf825] = new Opcode( - 0xf825, - "exp_multiplication", - [{ type: Type.Register }], - false, - [] - )); - static readonly exp_division = (OPCODES[0xf826] = new Opcode( - 0xf826, - "exp_division", - [{ type: Type.Register }], - false, - [] - )); - static readonly get_user_is_dead = (OPCODES[0xf827] = new Opcode( - 0xf827, - "get_user_is_dead", - [{ type: Type.Register }], - false, - [] - )); - static readonly go_floor = (OPCODES[0xf828] = new Opcode( - 0xf828, - "go_floor", - [{ type: Type.Register }, { type: Type.Register }], - false, - [] - )); - static readonly unknown_f829 = (OPCODES[0xf829] = new Opcode( - 0xf829, - "unknown_f829", - [], - false, - [] - )); - static readonly unknown_f82a = (OPCODES[0xf82a] = new Opcode( - 0xf82a, - "unknown_f82a", - [], - false, - [] - )); - static readonly unlock_door2 = (OPCODES[0xf82b] = new Opcode( - 0xf82b, - "unlock_door2", - [], - false, - [{ type: Type.U32 }, { type: Type.U32 }] - )); - static readonly lock_door2 = (OPCODES[0xf82c] = new Opcode(0xf82c, "lock_door2", [], false, [ - { type: Type.U32 }, - { type: Type.U32 }, - ])); - static readonly if_switch_not_pressed = (OPCODES[0xf82d] = new Opcode( - 0xf82d, - "if_switch_not_pressed", - [{ type: Type.Register }], - false, - [] - )); - static readonly if_switch_pressed = (OPCODES[0xf82e] = new Opcode( - 0xf82e, - "if_switch_pressed", - [{ type: Type.Register }], - false, - [] - )); - static readonly unknown_f82f = (OPCODES[0xf82f] = new Opcode( - 0xf82f, - "unknown_f82f", - [], - false, - [{ type: Type.U32 }, { type: Type.U32 }] - )); - static readonly control_dragon = (OPCODES[0xf830] = new Opcode( - 0xf830, - "control_dragon", - [{ type: Type.Register }], - false, - [] - )); - static readonly release_dragon = (OPCODES[0xf831] = new Opcode( - 0xf831, - "release_dragon", - [], - false, - [] - )); - static readonly unknown_f832 = (OPCODES[0xf832] = new Opcode( - 0xf832, - "unknown_f832", - [], - false, - [] - )); - static readonly unknown_f833 = (OPCODES[0xf833] = new Opcode( - 0xf833, - "unknown_f833", - [], - false, - [] - )); - static readonly unknown_f834 = (OPCODES[0xf834] = new Opcode( - 0xf834, - "unknown_f834", - [], - false, - [] - )); - static readonly unknown_f835 = (OPCODES[0xf835] = new Opcode( - 0xf835, - "unknown_f835", - [], - false, - [] - )); - static readonly unknown_f836 = (OPCODES[0xf836] = new Opcode( - 0xf836, - "unknown_f836", - [], - false, - [] - )); - static readonly unknown_f837 = (OPCODES[0xf837] = new Opcode( - 0xf837, - "unknown_f837", - [], - false, - [] - )); - static readonly shrink = (OPCODES[0xf838] = new Opcode( - 0xf838, - "shrink", - [{ type: Type.Register }], - false, - [] - )); - static readonly unshrink = (OPCODES[0xf839] = new Opcode( - 0xf839, - "unshrink", - [{ type: Type.Register }], - false, - [] - )); - static readonly unknown_f83a = (OPCODES[0xf83a] = new Opcode( - 0xf83a, - "unknown_f83a", - [], - false, - [] - )); - static readonly unknown_f83b = (OPCODES[0xf83b] = new Opcode( - 0xf83b, - "unknown_f83b", - [], - false, - [] - )); - static readonly display_clock2 = (OPCODES[0xf83c] = new Opcode( - 0xf83c, - "display_clock2", - [{ type: Type.Register }], - false, - [] - )); - static readonly unknown_f83d = (OPCODES[0xf83d] = new Opcode( - 0xf83d, - "unknown_f83d", - [], - false, - [{ type: Type.U32 }] - )); - static readonly delete_area_title = (OPCODES[0xf83e] = new Opcode( - 0xf83e, - "delete_area_title", - [], - false, - [{ type: Type.U32 }] - )); - static readonly unknown_f83f = (OPCODES[0xf83f] = new Opcode( - 0xf83f, - "unknown_f83f", - [], - false, - [] - )); - static readonly load_npc_data = (OPCODES[0xf840] = new Opcode( - 0xf840, - "load_npc_data", - [], - false, - [] - )); - static readonly get_npc_data = (OPCODES[0xf841] = new Opcode( - 0xf841, - "get_npc_data", - [{ type: Type.DLabel }], - false, - [] - )); - static readonly unknown_f842 = (OPCODES[0xf842] = new Opcode( - 0xf842, - "unknown_f842", - [], - false, - [] - )); - static readonly unknown_f843 = (OPCODES[0xf843] = new Opcode( - 0xf843, - "unknown_f843", - [], - false, - [] - )); - static readonly unknown_f844 = (OPCODES[0xf844] = new Opcode( - 0xf844, - "unknown_f844", - [], - false, - [] - )); - static readonly unknown_f845 = (OPCODES[0xf845] = new Opcode( - 0xf845, - "unknown_f845", - [], - false, - [] - )); - static readonly unknown_f846 = (OPCODES[0xf846] = new Opcode( - 0xf846, - "unknown_f846", - [], - false, - [] - )); - static readonly unknown_f847 = (OPCODES[0xf847] = new Opcode( - 0xf847, - "unknown_f847", - [], - false, - [] - )); - static readonly give_damage_score = (OPCODES[0xf848] = new Opcode( - 0xf848, - "give_damage_score", - [{ type: Type.Register }], - false, - [] - )); - static readonly take_damage_score = (OPCODES[0xf849] = new Opcode( - 0xf849, - "take_damage_score", - [{ type: Type.Register }], - false, - [] - )); - static readonly unk_score_f84a = (OPCODES[0xf84a] = new Opcode( - 0xf84a, - "unk_score_f84a", - [{ type: Type.Register }], - false, - [] - )); - static readonly unk_score_f84b = (OPCODES[0xf84b] = new Opcode( - 0xf84b, - "unk_score_f84b", - [{ type: Type.Register }], - false, - [] - )); - static readonly kill_score = (OPCODES[0xf84c] = new Opcode( - 0xf84c, - "kill_score", - [{ type: Type.Register }], - false, - [] - )); - static readonly death_score = (OPCODES[0xf84d] = new Opcode( - 0xf84d, - "death_score", - [{ type: Type.Register }], - false, - [] - )); - static readonly unk_score_f84e = (OPCODES[0xf84e] = new Opcode( - 0xf84e, - "unk_score_f84e", - [{ type: Type.Register }], - false, - [] - )); - static readonly enemy_death_score = (OPCODES[0xf84f] = new Opcode( - 0xf84f, - "enemy_death_score", - [{ type: Type.Register }], - false, - [] - )); - static readonly meseta_score = (OPCODES[0xf850] = new Opcode( - 0xf850, - "meseta_score", - [{ type: Type.Register }], - false, - [] - )); - static readonly unknown_f851 = (OPCODES[0xf851] = new Opcode( - 0xf851, - "unknown_f851", - [{ type: Type.Register }], - false, - [] - )); - static readonly unknown_f852 = (OPCODES[0xf852] = new Opcode( - 0xf852, - "unknown_f852", - [], - false, - [{ type: Type.U32 }] - )); - static readonly reverse_warps = (OPCODES[0xf853] = new Opcode( - 0xf853, - "reverse_warps", - [], - false, - [] - )); - static readonly unreverse_warps = (OPCODES[0xf854] = new Opcode( - 0xf854, - "unreverse_warps", - [], - false, - [] - )); - static readonly set_ult_map = (OPCODES[0xf855] = new Opcode( - 0xf855, - "set_ult_map", - [], - false, - [] - )); - static readonly unset_ult_map = (OPCODES[0xf856] = new Opcode( - 0xf856, - "unset_ult_map", - [], - false, - [] - )); - static readonly set_area_title = (OPCODES[0xf857] = new Opcode( - 0xf857, - "set_area_title", - [], - false, - [{ type: Type.String }] - )); - static readonly unknown_f858 = (OPCODES[0xf858] = new Opcode( - 0xf858, - "unknown_f858", - [], - false, - [] - )); - static readonly unknown_f859 = (OPCODES[0xf859] = new Opcode( - 0xf859, - "unknown_f859", - [], - false, - [] - )); - static readonly equip_item = (OPCODES[0xf85a] = new Opcode( - 0xf85a, - "equip_item", - [{ type: Type.Register }], - false, - [] - )); - static readonly unequip_item = (OPCODES[0xf85b] = new Opcode( - 0xf85b, - "unequip_item", - [], - false, - [{ type: Type.U32 }, { type: Type.U32 }] - )); - static readonly unknown_f85c = (OPCODES[0xf85c] = new Opcode( - 0xf85c, - "unknown_f85c", - [], - false, - [] - )); - static readonly unknown_f85d = (OPCODES[0xf85d] = new Opcode( - 0xf85d, - "unknown_f85d", - [], - false, - [] - )); - static readonly unknown_f85e = (OPCODES[0xf85e] = new Opcode( - 0xf85e, - "unknown_f85e", - [], - false, - [{ type: Type.U32 }] - )); - static readonly unknown_f85f = (OPCODES[0xf85f] = new Opcode( - 0xf85f, - "unknown_f85f", - [], - false, - [{ type: Type.U32 }] - )); - static readonly unknown_f860 = (OPCODES[0xf860] = new Opcode( - 0xf860, - "unknown_f860", - [], - false, - [] - )); - static readonly unknown_f861 = (OPCODES[0xf861] = new Opcode( - 0xf861, - "unknown_f861", - [], - false, - [{ type: Type.U32 }] - )); - static readonly unknown_f862 = (OPCODES[0xf862] = new Opcode( - 0xf862, - "unknown_f862", - [], - false, - [] - )); - static readonly unknown_f863 = (OPCODES[0xf863] = new Opcode( - 0xf863, - "unknown_f863", - [], - false, - [] - )); - static readonly cmode_rank = (OPCODES[0xf864] = new Opcode(0xf864, "cmode_rank", [], false, [ - { type: Type.U32 }, - { type: Type.String }, - ])); - static readonly award_item_name = (OPCODES[0xf865] = new Opcode( - 0xf865, - "award_item_name", - [], - false, - [] - )); - static readonly award_item_select = (OPCODES[0xf866] = new Opcode( - 0xf866, - "award_item_select", - [], - false, - [] - )); - static readonly award_item_give_to = (OPCODES[0xf867] = new Opcode( - 0xf867, - "award_item_give_to", - [{ type: Type.Register }], - false, - [] - )); - static readonly unknown_f868 = (OPCODES[0xf868] = new Opcode( - 0xf868, - "unknown_f868", - [{ type: Type.Register }, { type: Type.Register }], - false, - [] - )); - static readonly unknown_f869 = (OPCODES[0xf869] = new Opcode( - 0xf869, - "unknown_f869", - [{ type: Type.Register }, { type: Type.Register }], - false, - [] - )); - static readonly item_create_cmode = (OPCODES[0xf86a] = new Opcode( - 0xf86a, - "item_create_cmode", - [{ type: Type.Register }, { type: Type.Register }], - false, - [] - )); - static readonly unknown_f86b = (OPCODES[0xf86b] = new Opcode( - 0xf86b, - "unknown_f86b", - [{ type: Type.Register }], - false, - [] - )); - static readonly award_item_ok = (OPCODES[0xf86c] = new Opcode( - 0xf86c, - "award_item_ok", - [{ type: Type.Register }], - false, - [] - )); - static readonly unknown_f86d = (OPCODES[0xf86d] = new Opcode( - 0xf86d, - "unknown_f86d", - [], - false, - [] - )); - static readonly unknown_f86e = (OPCODES[0xf86e] = new Opcode( - 0xf86e, - "unknown_f86e", - [], - false, - [] - )); - static readonly ba_set_lives = (OPCODES[0xf86f] = new Opcode( - 0xf86f, - "ba_set_lives", - [], - false, - [{ type: Type.U32 }] - )); - static readonly ba_set_tech_lvl = (OPCODES[0xf870] = new Opcode( - 0xf870, - "ba_set_tech_lvl", - [], - false, - [{ type: Type.U32 }] - )); - static readonly ba_set_lvl = (OPCODES[0xf871] = new Opcode(0xf871, "ba_set_lvl", [], false, [ - { type: Type.U32 }, - ])); - static readonly ba_set_time_limit = (OPCODES[0xf872] = new Opcode( - 0xf872, - "ba_set_time_limit", - [], - false, - [{ type: Type.U32 }] - )); - static readonly boss_is_dead = (OPCODES[0xf873] = new Opcode( - 0xf873, - "boss_is_dead", - [{ type: Type.Register }], - false, - [] - )); - static readonly unknown_f874 = (OPCODES[0xf874] = new Opcode( - 0xf874, - "unknown_f874", - [], - false, - [] - )); - static readonly unknown_f875 = (OPCODES[0xf875] = new Opcode( - 0xf875, - "unknown_f875", - [], - false, - [] - )); - static readonly unknown_f876 = (OPCODES[0xf876] = new Opcode( - 0xf876, - "unknown_f876", - [], - false, - [] - )); - static readonly enable_techs = (OPCODES[0xf877] = new Opcode( - 0xf877, - "enable_techs", - [{ type: Type.Register }], - false, - [] - )); - static readonly disable_techs = (OPCODES[0xf878] = new Opcode( - 0xf878, - "disable_techs", - [{ type: Type.Register }], - false, - [] - )); - static readonly get_gender = (OPCODES[0xf879] = new Opcode( - 0xf879, - "get_gender", - [{ type: Type.Register }, { type: Type.Register }], - false, - [] - )); - static readonly get_chara_class = (OPCODES[0xf87a] = new Opcode( - 0xf87a, - "get_chara_class", - [{ type: Type.Register }, { type: Type.Register }], - false, - [] - )); - static readonly take_slot_meseta = (OPCODES[0xf87b] = new Opcode( - 0xf87b, - "take_slot_meseta", - [{ type: Type.Register }, { type: Type.Register }], - false, - [] - )); - static readonly unknown_f87c = (OPCODES[0xf87c] = new Opcode( - 0xf87c, - "unknown_f87c", - [], - false, - [] - )); - static readonly unknown_f87d = (OPCODES[0xf87d] = new Opcode( - 0xf87d, - "unknown_f87d", - [], - false, - [] - )); - static readonly unknown_f87e = (OPCODES[0xf87e] = new Opcode( - 0xf87e, - "unknown_f87e", - [], - false, - [] - )); - static readonly read_guildcard_flag = (OPCODES[0xf87f] = new Opcode( - 0xf87f, - "read_guildcard_flag", - [{ type: Type.Register }, { type: Type.Register }], - false, - [] - )); - static readonly unknown_f880 = (OPCODES[0xf880] = new Opcode( - 0xf880, - "unknown_f880", - [{ type: Type.Register }], - false, - [] - )); - static readonly get_pl_name = (OPCODES[0xf881] = new Opcode( - 0xf881, - "get_pl_name", - [{ type: Type.Register }], - false, - [] - )); - static readonly unknown_f882 = (OPCODES[0xf882] = new Opcode( - 0xf882, - "unknown_f882", - [], - false, - [] - )); - static readonly unknown_f883 = (OPCODES[0xf883] = new Opcode( - 0xf883, - "unknown_f883", - [{ type: Type.Register }, { type: Type.Register }], - false, - [] - )); - static readonly unknown_f884 = (OPCODES[0xf884] = new Opcode( - 0xf884, - "unknown_f884", - [], - false, - [] - )); - static readonly unknown_f885 = (OPCODES[0xf885] = new Opcode( - 0xf885, - "unknown_f885", - [], - false, - [] - )); - static readonly unknown_f886 = (OPCODES[0xf886] = new Opcode( - 0xf886, - "unknown_f886", - [], - false, - [] - )); - static readonly unknown_f887 = (OPCODES[0xf887] = new Opcode( - 0xf887, - "unknown_f887", - [], - false, - [] - )); - static readonly ba_close_msg = (OPCODES[0xf888] = new Opcode( - 0xf888, - "ba_close_msg", - [], - false, - [] - )); - static readonly unknown_f889 = (OPCODES[0xf889] = new Opcode( - 0xf889, - "unknown_f889", - [], - false, - [] - )); - static readonly get_player_status = (OPCODES[0xf88a] = new Opcode( - 0xf88a, - "get_player_status", - [{ type: Type.Register }, { type: Type.Register }], - false, - [] - )); - static readonly send_mail = (OPCODES[0xf88b] = new Opcode(0xf88b, "send_mail", [], false, [ - { type: Type.Register }, - { type: Type.String }, - ])); - static readonly online_check = (OPCODES[0xf88c] = new Opcode( - 0xf88c, - "online_check", - [{ type: Type.Register }], - false, - [] - )); - static readonly chl_set_timerecord = (OPCODES[0xf88d] = new Opcode( - 0xf88d, - "chl_set_timerecord", - [{ type: Type.Register }], - false, - [] - )); - static readonly chl_get_timerecord = (OPCODES[0xf88e] = new Opcode( - 0xf88e, - "chl_get_timerecord", - [{ type: Type.Register }], - false, - [] - )); - static readonly unknown_f88f = (OPCODES[0xf88f] = new Opcode( - 0xf88f, - "unknown_f88f", - [{ type: Type.Register }], - false, - [] - )); - static readonly unknown_f890 = (OPCODES[0xf890] = new Opcode( - 0xf890, - "unknown_f890", - [], - false, - [] - )); - static readonly load_enemy_data = (OPCODES[0xf891] = new Opcode( - 0xf891, - "load_enemy_data", - [], - false, - [{ type: Type.U32 }] - )); - static readonly get_physical_data = (OPCODES[0xf892] = new Opcode( - 0xf892, - "get_physical_data", - [{ type: Type.U16 }], - false, - [] - )); - static readonly get_attack_data = (OPCODES[0xf893] = new Opcode( - 0xf893, - "get_attack_data", - [{ type: Type.U16 }], - false, - [] - )); - static readonly get_resist_data = (OPCODES[0xf894] = new Opcode( - 0xf894, - "get_resist_data", - [{ type: Type.U16 }], - false, - [] - )); - static readonly get_movement_data = (OPCODES[0xf895] = new Opcode( - 0xf895, - "get_movement_data", - [{ type: Type.U16 }], - false, - [] - )); - static readonly unknown_f896 = (OPCODES[0xf896] = new Opcode( - 0xf896, - "unknown_f896", - [], - false, - [] - )); - static readonly unknown_f897 = (OPCODES[0xf897] = new Opcode( - 0xf897, - "unknown_f897", - [], - false, - [] - )); - static readonly shift_left = (OPCODES[0xf898] = new Opcode( - 0xf898, - "shift_left", - [{ type: Type.Register }, { type: Type.Register }], - false, - [] - )); - static readonly shift_right = (OPCODES[0xf899] = new Opcode( - 0xf899, - "shift_right", - [{ type: Type.Register }, { type: Type.Register }], - false, - [] - )); - static readonly get_random = (OPCODES[0xf89a] = new Opcode( - 0xf89a, - "get_random", - [{ type: Type.Register }, { type: Type.Register }], - false, - [] - )); + static readonly nop = (OPCODES[0x00] = new Opcode({ + code: 0x00, + mnemonic: "nop", + doc: "No operation, does nothing.", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly ret = (OPCODES[0x01] = new Opcode({ + code: 0x01, + mnemonic: "ret", + doc: "Returns control to caller.", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly sync = (OPCODES[0x02] = new Opcode({ + code: 0x02, + mnemonic: "sync", + doc: "Yields control for this frame. Execution will continue in the next frame.", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly exit = (OPCODES[0x03] = new Opcode({ + code: 0x03, + mnemonic: "exit", + params: [], + push_stack: false, + stack_params: [{ type: TYPE_U32 }], + })); + static readonly thread = (OPCODES[0x04] = new Opcode({ + code: 0x04, + mnemonic: "thread", + doc: + "Starts a new thread. Thread execution will start at the given label.\nOften used to check a register every frame. Make sure to yield control with sync when looping.", + params: [{ type: TYPE_I_LABEL }], + push_stack: false, + stack_params: [], + })); + static readonly va_start = (OPCODES[0x05] = new Opcode({ + code: 0x05, + mnemonic: "va_start", + doc: + "Initializes a variable argument list.\nMake sure to call va_end after va_start and va_call.", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly va_end = (OPCODES[0x06] = new Opcode({ + code: 0x06, + mnemonic: "va_end", + doc: + "Restores the registers overwritten by arg_push* instructions.\nCalled after va_start and va_call", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly va_call = (OPCODES[0x07] = new Opcode({ + code: 0x07, + mnemonic: "va_call", + doc: + "Calls the variable argument function at the given label.\nCalled after initializing the argument list with va_start and pushing arguments onto the stack with arg_push* instructions. Make sure to call va_end afterwards.", + params: [{ type: TYPE_I_LABEL }], + push_stack: false, + stack_params: [], + })); + static readonly let = (OPCODES[0x08] = new Opcode({ + code: 0x08, + mnemonic: "let", + doc: "Sets the first register's value to second one's value.", + params: [ + { type: new RegTupRefType(TYPE), write: true }, + { type: new RegTupRefType(TYPE), read: true }, + ], + push_stack: false, + stack_params: [], + })); + static readonly leti = (OPCODES[0x09] = new Opcode({ + code: 0x09, + mnemonic: "leti", + doc: "Sets a register to the given value.", + params: [{ type: new RegTupRefType(TYPE_I32), write: true }, { type: TYPE_I32 }], + push_stack: false, + stack_params: [], + })); + static readonly letb = (OPCODES[0x0a] = new Opcode({ + code: 0x0a, + mnemonic: "letb", + doc: "Sets a register to the given value.", + params: [{ type: new RegTupRefType(TYPE_U8), write: true }, { type: TYPE_U8 }], + push_stack: false, + stack_params: [], + })); + static readonly letw = (OPCODES[0x0b] = new Opcode({ + code: 0x0b, + mnemonic: "letw", + doc: "Sets a register to the given value.", + params: [{ type: new RegTupRefType(TYPE_U16), write: true }, { type: TYPE_U16 }], + push_stack: false, + stack_params: [], + })); + static readonly leta = (OPCODES[0x0c] = new Opcode({ + code: 0x0c, + mnemonic: "leta", + doc: + "Sets the first register to the memory address of the second register. Not used by Sega.", + params: [ + { type: new RegTupRefType(TYPE_POINTER), write: true }, + { type: new RegTupRefType(TYPE), read: true }, + ], + push_stack: false, + stack_params: [], + })); + static readonly leto = (OPCODES[0x0d] = new Opcode({ + code: 0x0d, + mnemonic: "leto", + doc: "Sets a register to the memory address of the given label. Not used by Sega.", + params: [ + { type: new RegTupRefType(TYPE_POINTER), write: true }, + { type: TYPE_U16 /* ILabel or DLabel */ }, + ], + push_stack: false, + stack_params: [], + })); + static readonly unknown_0e = (OPCODES[0x0e] = new Opcode({ + code: 0x0e, + mnemonic: "unknown_0e", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_0f = (OPCODES[0x0f] = new Opcode({ + code: 0x0f, + mnemonic: "unknown_0f", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly set = (OPCODES[0x10] = new Opcode({ + code: 0x10, + mnemonic: "set", + doc: "Sets a register to 1.", + params: [{ type: new RegTupRefType(TYPE_I32), write: true }], + push_stack: false, + stack_params: [], + })); + static readonly clear = (OPCODES[0x11] = new Opcode({ + code: 0x11, + mnemonic: "clear", + doc: "Sets a register to 0.", + params: [{ type: new RegTupRefType(TYPE_I32), write: true }], + push_stack: false, + stack_params: [], + })); + static readonly rev = (OPCODES[0x12] = new Opcode({ + code: 0x12, + mnemonic: "rev", + doc: "Sets a register to 1 if its current value is 0, otherwise sets it to 0.", + params: [{ type: new RegTupRefType(TYPE_I32), read: true, write: true }], + push_stack: false, + stack_params: [], + })); + static readonly gset = (OPCODES[0x13] = new Opcode({ + code: 0x13, + mnemonic: "gset", + params: [{ type: TYPE_U16 }], + push_stack: false, + stack_params: [], + })); + static readonly gclear = (OPCODES[0x14] = new Opcode({ + code: 0x14, + mnemonic: "gclear", + params: [{ type: TYPE_U16 }], + push_stack: false, + stack_params: [], + })); + static readonly grev = (OPCODES[0x15] = new Opcode({ + code: 0x15, + mnemonic: "grev", + params: [{ type: TYPE_U16 }], + push_stack: false, + stack_params: [], + })); + static readonly glet = (OPCODES[0x16] = new Opcode({ + code: 0x16, + mnemonic: "glet", + params: [{ type: TYPE_U16 }], + push_stack: false, + stack_params: [], + })); + static readonly gget = (OPCODES[0x17] = new Opcode({ + code: 0x17, + mnemonic: "gget", + doc: "Sets a register to value of the given flag.", + params: [{ type: TYPE_U16 }, { type: new RegTupRefType(TYPE_U16), write: true }], + push_stack: false, + stack_params: [], + })); + static readonly add = (OPCODES[0x18] = new Opcode({ + code: 0x18, + mnemonic: "add", + params: [ + { type: new RegTupRefType(TYPE_I32), write: true }, + { type: new RegTupRefType(TYPE_I32), read: true }, + ], + push_stack: false, + stack_params: [], + })); + static readonly addi = (OPCODES[0x19] = new Opcode({ + code: 0x19, + mnemonic: "addi", + params: [{ type: new RegTupRefType(TYPE_I32), write: true }, { type: TYPE_I32 }], + push_stack: false, + stack_params: [], + })); + static readonly sub = (OPCODES[0x1a] = new Opcode({ + code: 0x1a, + mnemonic: "sub", + params: [ + { type: new RegTupRefType(TYPE_I32), write: true }, + { type: new RegTupRefType(TYPE_I32), read: true }, + ], + push_stack: false, + stack_params: [], + })); + static readonly subi = (OPCODES[0x1b] = new Opcode({ + code: 0x1b, + mnemonic: "subi", + params: [{ type: new RegTupRefType(TYPE_I32), write: true }, { type: TYPE_I32 }], + push_stack: false, + stack_params: [], + })); + static readonly mul = (OPCODES[0x1c] = new Opcode({ + code: 0x1c, + mnemonic: "mul", + params: [ + { type: new RegTupRefType(TYPE_I32), write: true }, + { type: new RegTupRefType(TYPE_I32), read: true }, + ], + push_stack: false, + stack_params: [], + })); + static readonly muli = (OPCODES[0x1d] = new Opcode({ + code: 0x1d, + mnemonic: "muli", + params: [{ type: new RegTupRefType(TYPE_I32), write: true }, { type: TYPE_I32 }], + push_stack: false, + stack_params: [], + })); + static readonly div = (OPCODES[0x1e] = new Opcode({ + code: 0x1e, + mnemonic: "div", + params: [ + { type: new RegTupRefType(TYPE_I32), write: true }, + { type: new RegTupRefType(TYPE_I32), read: true }, + ], + push_stack: false, + stack_params: [], + })); + static readonly divi = (OPCODES[0x1f] = new Opcode({ + code: 0x1f, + mnemonic: "divi", + params: [{ type: new RegTupRefType(TYPE_I32), write: true }, { type: TYPE_I32 }], + push_stack: false, + stack_params: [], + })); + static readonly and = (OPCODES[0x20] = new Opcode({ + code: 0x20, + mnemonic: "and", + params: [ + { type: new RegTupRefType(TYPE_I32), write: true }, + { type: new RegTupRefType(TYPE_I32), read: true }, + ], + push_stack: false, + stack_params: [], + })); + static readonly andi = (OPCODES[0x21] = new Opcode({ + code: 0x21, + mnemonic: "andi", + params: [{ type: new RegTupRefType(TYPE_I32), write: true }, { type: TYPE_I32 }], + push_stack: false, + stack_params: [], + })); + static readonly or = (OPCODES[0x22] = new Opcode({ + code: 0x22, + mnemonic: "or", + params: [ + { type: new RegTupRefType(TYPE_I32), write: true }, + { type: new RegTupRefType(TYPE_I32), read: true }, + ], + push_stack: false, + stack_params: [], + })); + static readonly ori = (OPCODES[0x23] = new Opcode({ + code: 0x23, + mnemonic: "ori", + params: [{ type: new RegTupRefType(TYPE_I32), write: true }, { type: TYPE_I32 }], + push_stack: false, + stack_params: [], + })); + static readonly xor = (OPCODES[0x24] = new Opcode({ + code: 0x24, + mnemonic: "xor", + params: [ + { type: new RegTupRefType(TYPE_I32), write: true }, + { type: new RegTupRefType(TYPE_I32), read: true }, + ], + push_stack: false, + stack_params: [], + })); + static readonly xori = (OPCODES[0x25] = new Opcode({ + code: 0x25, + mnemonic: "xori", + params: [{ type: new RegTupRefType(TYPE_I32), write: true }, { type: TYPE_I32 }], + push_stack: false, + stack_params: [], + })); + static readonly mod = (OPCODES[0x26] = new Opcode({ + code: 0x26, + mnemonic: "mod", + params: [ + { type: new RegTupRefType(TYPE_I32), write: true }, + { type: new RegTupRefType(TYPE_I32), read: true }, + ], + push_stack: false, + stack_params: [], + })); + static readonly modi = (OPCODES[0x27] = new Opcode({ + code: 0x27, + mnemonic: "modi", + params: [{ type: new RegTupRefType(TYPE_I32), write: true }, { type: TYPE_I32 }], + push_stack: false, + stack_params: [], + })); + static readonly jmp = (OPCODES[0x28] = new Opcode({ + code: 0x28, + mnemonic: "jmp", + params: [{ type: TYPE_I_LABEL }], + push_stack: false, + stack_params: [], + })); + static readonly call = (OPCODES[0x29] = new Opcode({ + code: 0x29, + mnemonic: "call", + params: [{ type: TYPE_I_LABEL }], + push_stack: false, + stack_params: [], + })); + static readonly jmp_on = (OPCODES[0x2a] = new Opcode({ + code: 0x2a, + mnemonic: "jmp_on", + params: [{ type: TYPE_I_LABEL }, { type: TYPE_REG_REF_VAR, read: true }], + push_stack: false, + stack_params: [], + })); + static readonly jmp_off = (OPCODES[0x2b] = new Opcode({ + code: 0x2b, + mnemonic: "jmp_off", + params: [{ type: TYPE_I_LABEL }, { type: TYPE_REG_REF_VAR, read: true }], + push_stack: false, + stack_params: [], + })); + static readonly jmp_e = (OPCODES[0x2c] = new Opcode({ + code: 0x2c, + mnemonic: "jmp_=", + params: [ + { type: new RegTupRefType(TYPE), read: true }, + { type: new RegTupRefType(TYPE), read: true }, + { type: TYPE_I_LABEL }, + ], + push_stack: false, + stack_params: [], + })); + static readonly jmpi_e = (OPCODES[0x2d] = new Opcode({ + code: 0x2d, + mnemonic: "jmpi_=", + params: [ + { type: new RegTupRefType(TYPE_I32), read: true }, + { type: TYPE_I32 }, + { type: TYPE_I_LABEL }, + ], + push_stack: false, + stack_params: [], + })); + static readonly jmp_ne = (OPCODES[0x2e] = new Opcode({ + code: 0x2e, + mnemonic: "jmp_!=", + params: [ + { type: new RegTupRefType(TYPE), read: true }, + { type: new RegTupRefType(TYPE), read: true }, + { type: TYPE_I_LABEL }, + ], + push_stack: false, + stack_params: [], + })); + static readonly jmpi_ne = (OPCODES[0x2f] = new Opcode({ + code: 0x2f, + mnemonic: "jmpi_!=", + params: [ + { type: new RegTupRefType(TYPE_I32), read: true }, + { type: TYPE_I32 }, + { type: TYPE_I_LABEL }, + ], + push_stack: false, + stack_params: [], + })); + static readonly ujmp_g = (OPCODES[0x30] = new Opcode({ + code: 0x30, + mnemonic: "ujmp_>", + params: [ + { type: new RegTupRefType(TYPE_U32), read: true }, + { type: new RegTupRefType(TYPE_U32), read: true }, + { type: TYPE_I_LABEL }, + ], + push_stack: false, + stack_params: [], + })); + static readonly ujmpi_g = (OPCODES[0x31] = new Opcode({ + code: 0x31, + mnemonic: "ujmpi_>", + params: [ + { type: new RegTupRefType(TYPE_U32), read: true }, + { type: TYPE_U32 }, + { type: TYPE_I_LABEL }, + ], + push_stack: false, + stack_params: [], + })); + static readonly jmp_g = (OPCODES[0x32] = new Opcode({ + code: 0x32, + mnemonic: "jmp_>", + params: [ + { type: new RegTupRefType(TYPE_I32), read: true }, + { type: new RegTupRefType(TYPE_I32), read: true }, + { type: TYPE_I_LABEL }, + ], + push_stack: false, + stack_params: [], + })); + static readonly jmpi_g = (OPCODES[0x33] = new Opcode({ + code: 0x33, + mnemonic: "jmpi_>", + params: [ + { type: new RegTupRefType(TYPE_I32), read: true }, + { type: TYPE_I32 }, + { type: TYPE_I_LABEL }, + ], + push_stack: false, + stack_params: [], + })); + static readonly ujmp_l = (OPCODES[0x34] = new Opcode({ + code: 0x34, + mnemonic: "ujmp_<", + params: [ + { type: new RegTupRefType(TYPE_U32), read: true }, + { type: new RegTupRefType(TYPE_U32), read: true }, + { type: TYPE_I_LABEL }, + ], + push_stack: false, + stack_params: [], + })); + static readonly ujmpi_l = (OPCODES[0x35] = new Opcode({ + code: 0x35, + mnemonic: "ujmpi_<", + params: [ + { type: new RegTupRefType(TYPE_U32), read: true }, + { type: TYPE_U32 }, + { type: TYPE_I_LABEL }, + ], + push_stack: false, + stack_params: [], + })); + static readonly jmp_l = (OPCODES[0x36] = new Opcode({ + code: 0x36, + mnemonic: "jmp_<", + params: [ + { type: new RegTupRefType(TYPE_I32), read: true }, + { type: new RegTupRefType(TYPE_I32), read: true }, + { type: TYPE_I_LABEL }, + ], + push_stack: false, + stack_params: [], + })); + static readonly jmpi_l = (OPCODES[0x37] = new Opcode({ + code: 0x37, + mnemonic: "jmpi_<", + params: [ + { type: new RegTupRefType(TYPE_I32), read: true }, + { type: TYPE_I32 }, + { type: TYPE_I_LABEL }, + ], + push_stack: false, + stack_params: [], + })); + static readonly ujmp_ge = (OPCODES[0x38] = new Opcode({ + code: 0x38, + mnemonic: "ujmp_>=", + params: [ + { type: new RegTupRefType(TYPE_U32), read: true }, + { type: new RegTupRefType(TYPE_U32), read: true }, + { type: TYPE_I_LABEL }, + ], + push_stack: false, + stack_params: [], + })); + static readonly ujmpi_ge = (OPCODES[0x39] = new Opcode({ + code: 0x39, + mnemonic: "ujmpi_>=", + params: [ + { type: new RegTupRefType(TYPE_U32), read: true }, + { type: TYPE_U32 }, + { type: TYPE_I_LABEL }, + ], + push_stack: false, + stack_params: [], + })); + static readonly jmp_ge = (OPCODES[0x3a] = new Opcode({ + code: 0x3a, + mnemonic: "jmp_>=", + params: [ + { type: new RegTupRefType(TYPE_I32), read: true }, + { type: new RegTupRefType(TYPE_I32), read: true }, + { type: TYPE_I_LABEL }, + ], + push_stack: false, + stack_params: [], + })); + static readonly jmpi_ge = (OPCODES[0x3b] = new Opcode({ + code: 0x3b, + mnemonic: "jmpi_>=", + params: [ + { type: new RegTupRefType(TYPE_I32), read: true }, + { type: TYPE_I32 }, + { type: TYPE_I_LABEL }, + ], + push_stack: false, + stack_params: [], + })); + static readonly ujmp_le = (OPCODES[0x3c] = new Opcode({ + code: 0x3c, + mnemonic: "ujmp_<=", + params: [ + { type: new RegTupRefType(TYPE_U32), read: true }, + { type: new RegTupRefType(TYPE_U32), read: true }, + { type: TYPE_I_LABEL }, + ], + push_stack: false, + stack_params: [], + })); + static readonly ujmpi_le = (OPCODES[0x3d] = new Opcode({ + code: 0x3d, + mnemonic: "ujmpi_<=", + params: [ + { type: new RegTupRefType(TYPE_U32), read: true }, + { type: TYPE_U32 }, + { type: TYPE_I_LABEL }, + ], + push_stack: false, + stack_params: [], + })); + static readonly jmp_le = (OPCODES[0x3e] = new Opcode({ + code: 0x3e, + mnemonic: "jmp_<=", + params: [ + { type: new RegTupRefType(TYPE_I32), read: true }, + { type: new RegTupRefType(TYPE_I32), read: true }, + { type: TYPE_I_LABEL }, + ], + push_stack: false, + stack_params: [], + })); + static readonly jmpi_le = (OPCODES[0x3f] = new Opcode({ + code: 0x3f, + mnemonic: "jmpi_<=", + params: [ + { type: new RegTupRefType(TYPE_I32), read: true }, + { type: TYPE_I32 }, + { type: TYPE_I_LABEL }, + ], + push_stack: false, + stack_params: [], + })); + static readonly switch_jmp = (OPCODES[0x40] = new Opcode({ + code: 0x40, + mnemonic: "switch_jmp", + params: [{ type: new RegTupRefType(TYPE_I32), read: true }, { type: TYPE_I_LABEL }], + push_stack: false, + stack_params: [], + })); + static readonly switch_call = (OPCODES[0x41] = new Opcode({ + code: 0x41, + mnemonic: "switch_call", + params: [{ type: new RegTupRefType(TYPE_I32), read: true }, { type: TYPE_I_LABEL }], + push_stack: false, + stack_params: [], + })); + static readonly stack_push = (OPCODES[0x42] = new Opcode({ + code: 0x42, + mnemonic: "stack_push", + params: [{ type: new RegTupRefType(TYPE), read: true }], + push_stack: false, + stack_params: [], + })); + static readonly stack_pop = (OPCODES[0x43] = new Opcode({ + code: 0x43, + mnemonic: "stack_pop", + params: [{ type: new RegTupRefType(TYPE), write: true }], + push_stack: false, + stack_params: [], + })); + static readonly stack_pushm = (OPCODES[0x44] = new Opcode({ + code: 0x44, + mnemonic: "stack_pushm", + doc: "Pushes a variable amount of registers onto the stack", + params: [{ type: TYPE_REG_REF }, { type: TYPE_U32 }], + push_stack: false, + stack_params: [], + })); + static readonly stack_popm = (OPCODES[0x45] = new Opcode({ + code: 0x45, + mnemonic: "stack_popm", + doc: "Pops a variable amount of registers from the stack", + params: [{ type: TYPE_REG_REF }, { type: TYPE_U32 }], + push_stack: false, + stack_params: [], + })); + static readonly unknown_46 = (OPCODES[0x46] = new Opcode({ + code: 0x46, + mnemonic: "unknown_46", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_47 = (OPCODES[0x47] = new Opcode({ + code: 0x47, + mnemonic: "unknown_47", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly arg_pushr = (OPCODES[0x48] = new Opcode({ + code: 0x48, + mnemonic: "arg_pushr", + doc: "Pushes the value of the given register onto the stack.", + params: [{ type: new RegTupRefType(TYPE), read: true }], + push_stack: true, + stack_params: [], + })); + static readonly arg_pushl = (OPCODES[0x49] = new Opcode({ + code: 0x49, + mnemonic: "arg_pushl", + doc: "Pushes the given value onto the stack.", + params: [{ type: TYPE_I32 }], + push_stack: true, + stack_params: [], + })); + static readonly arg_pushb = (OPCODES[0x4a] = new Opcode({ + code: 0x4a, + mnemonic: "arg_pushb", + doc: "Pushes the given value onto the stack.", + params: [{ type: TYPE_U8 }], + push_stack: true, + stack_params: [], + })); + static readonly arg_pushw = (OPCODES[0x4b] = new Opcode({ + code: 0x4b, + mnemonic: "arg_pushw", + doc: "Pushes the given value onto the stack.", + params: [{ type: TYPE_U16 }], + push_stack: true, + stack_params: [], + })); + static readonly unknown_4c = (OPCODES[0x4c] = new Opcode({ + code: 0x4c, + mnemonic: "unknown_4c", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_4d = (OPCODES[0x4d] = new Opcode({ + code: 0x4d, + mnemonic: "unknown_4d", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly arg_pushs = (OPCODES[0x4e] = new Opcode({ + code: 0x4e, + mnemonic: "arg_pushs", + doc: "Pushes the given value onto the stack.", + params: [{ type: TYPE_STRING }], + push_stack: true, + stack_params: [], + })); + static readonly unknown_4f = (OPCODES[0x4f] = new Opcode({ + code: 0x4f, + mnemonic: "unknown_4f", + params: [{ type: new RegTupRefType(TYPE) }, { type: new RegTupRefType(TYPE) }], + push_stack: false, + stack_params: [], + })); + static readonly message = (OPCODES[0x50] = new Opcode({ + code: 0x50, + mnemonic: "message", + params: [], + push_stack: false, + stack_params: [{ type: TYPE_U32 }, { type: TYPE_STRING }], + })); + static readonly list = (OPCODES[0x51] = new Opcode({ + code: 0x51, + mnemonic: "list", + doc: + "Used to display a list of items and retrieve the item selected by the player.\nList items should be seperated by newlines. The selected item will be written to the given register.", + params: [], + push_stack: false, + stack_params: [{ type: new RegTupRefType(TYPE_U8), write: true }, { type: TYPE_STRING }], + })); + static readonly fadein = (OPCODES[0x52] = new Opcode({ + code: 0x52, + mnemonic: "fadein", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly fadeout = (OPCODES[0x53] = new Opcode({ + code: 0x53, + mnemonic: "fadeout", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly se = (OPCODES[0x54] = new Opcode({ + code: 0x54, + mnemonic: "se", + params: [], + push_stack: false, + stack_params: [{ type: TYPE_U32 }], + })); + static readonly bgm = (OPCODES[0x55] = new Opcode({ + code: 0x55, + mnemonic: "bgm", + params: [], + push_stack: false, + stack_params: [{ type: TYPE_U32 }], + })); + static readonly unknown_56 = (OPCODES[0x56] = new Opcode({ + code: 0x56, + mnemonic: "unknown_56", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_57 = (OPCODES[0x57] = new Opcode({ + code: 0x57, + mnemonic: "unknown_57", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly enable = (OPCODES[0x58] = new Opcode({ + code: 0x58, + mnemonic: "enable", + params: [], + push_stack: false, + stack_params: [{ type: TYPE_U32 }], + })); + static readonly disable = (OPCODES[0x59] = new Opcode({ + code: 0x59, + mnemonic: "disable", + params: [], + push_stack: false, + stack_params: [{ type: TYPE_U32 }], + })); + static readonly window_msg = (OPCODES[0x5a] = new Opcode({ + code: 0x5a, + mnemonic: "window_msg", + params: [], + push_stack: false, + stack_params: [{ type: TYPE_STRING }], + })); + static readonly add_msg = (OPCODES[0x5b] = new Opcode({ + code: 0x5b, + mnemonic: "add_msg", + params: [], + push_stack: false, + stack_params: [{ type: TYPE_STRING }], + })); + static readonly mesend = (OPCODES[0x5c] = new Opcode({ + code: 0x5c, + mnemonic: "mesend", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly gettime = (OPCODES[0x5d] = new Opcode({ + code: 0x5d, + mnemonic: "gettime", + params: [{ type: new RegTupRefType(TYPE_U32), write: true }], + push_stack: false, + stack_params: [], + })); + static readonly winend = (OPCODES[0x5e] = new Opcode({ + code: 0x5e, + mnemonic: "winend", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_5f = (OPCODES[0x5f] = new Opcode({ + code: 0x5f, + mnemonic: "unknown_5f", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly npc_crt_v3 = (OPCODES[0x60] = new Opcode({ + code: 0x60, + mnemonic: "npc_crt_v3", + params: [{ type: new RegTupRefType(TYPE) }], + push_stack: false, + stack_params: [], + })); + static readonly npc_stop = (OPCODES[0x61] = new Opcode({ + code: 0x61, + mnemonic: "npc_stop", + params: [], + push_stack: false, + stack_params: [{ type: TYPE_U32 }], + })); + static readonly npc_play = (OPCODES[0x62] = new Opcode({ + code: 0x62, + mnemonic: "npc_play", + params: [], + push_stack: false, + stack_params: [{ type: TYPE_U32 }], + })); + static readonly npc_kill = (OPCODES[0x63] = new Opcode({ + code: 0x63, + mnemonic: "npc_kill", + params: [], + push_stack: false, + stack_params: [{ type: TYPE_U32 }], + })); + static readonly npc_nont = (OPCODES[0x64] = new Opcode({ + code: 0x64, + mnemonic: "npc_nont", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly npc_talk = (OPCODES[0x65] = new Opcode({ + code: 0x65, + mnemonic: "npc_talk", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly npc_crp_v3 = (OPCODES[0x66] = new Opcode({ + code: 0x66, + mnemonic: "npc_crp_v3", + params: [{ type: new RegTupRefType(TYPE) }], + push_stack: false, + stack_params: [], + })); + static readonly unknown_67 = (OPCODES[0x67] = new Opcode({ + code: 0x67, + mnemonic: "unknown_67", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly create_pipe = (OPCODES[0x68] = new Opcode({ + code: 0x68, + mnemonic: "create_pipe", + params: [], + push_stack: false, + stack_params: [{ type: TYPE_U32 }], + })); + static readonly p_hpstat_v3 = (OPCODES[0x69] = new Opcode({ + code: 0x69, + mnemonic: "p_hpstat_v3", + params: [], + push_stack: false, + stack_params: [{ type: Type.RegRef2, write: true }, { type: TYPE_U32 }], + })); + static readonly p_dead_v3 = (OPCODES[0x6a] = new Opcode({ + code: 0x6a, + mnemonic: "p_dead_v3", + params: [], + push_stack: false, + stack_params: [{ type: new RegTupRefType(TYPE_U8), write: true }, { type: TYPE_U32 }], + })); + static readonly p_disablewarp = (OPCODES[0x6b] = new Opcode({ + code: 0x6b, + mnemonic: "p_disablewarp", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly p_enablewarp = (OPCODES[0x6c] = new Opcode({ + code: 0x6c, + mnemonic: "p_enablewarp", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly p_move_v3 = (OPCODES[0x6d] = new Opcode({ + code: 0x6d, + mnemonic: "p_move_v3", + params: [{ type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly p_look = (OPCODES[0x6e] = new Opcode({ + code: 0x6e, + mnemonic: "p_look", + params: [], + push_stack: false, + stack_params: [{ type: TYPE_U32 }], + })); + static readonly unknown_6f = (OPCODES[0x6f] = new Opcode({ + code: 0x6f, + mnemonic: "unknown_6f", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly p_action_disable = (OPCODES[0x70] = new Opcode({ + code: 0x70, + mnemonic: "p_action_disable", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly p_action_enable = (OPCODES[0x71] = new Opcode({ + code: 0x71, + mnemonic: "p_action_enable", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly disable_movement1 = (OPCODES[0x72] = new Opcode({ + code: 0x72, + mnemonic: "disable_movement1", + params: [], + push_stack: false, + stack_params: [{ type: TYPE_U32 }], + })); + static readonly enable_movement1 = (OPCODES[0x73] = new Opcode({ + code: 0x73, + mnemonic: "enable_movement1", + params: [], + push_stack: false, + stack_params: [{ type: TYPE_U32 }], + })); + static readonly p_noncol = (OPCODES[0x74] = new Opcode({ + code: 0x74, + mnemonic: "p_noncol", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly p_col = (OPCODES[0x75] = new Opcode({ + code: 0x75, + mnemonic: "p_col", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly p_setpos = (OPCODES[0x76] = new Opcode({ + code: 0x76, + mnemonic: "p_setpos", + params: [], + push_stack: false, + stack_params: [ + { type: TYPE_U32 }, + { type: new RegTupRefType(TYPE_I32, TYPE_I32, TYPE_I32, TYPE_I32), read: true }, + ], + })); + static readonly p_return_guild = (OPCODES[0x77] = new Opcode({ + code: 0x77, + mnemonic: "p_return_guild", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly p_talk_guild = (OPCODES[0x78] = new Opcode({ + code: 0x78, + mnemonic: "p_talk_guild", + params: [], + push_stack: false, + stack_params: [{ type: TYPE_U32 }], + })); + static readonly npc_talk_pl_v3 = (OPCODES[0x79] = new Opcode({ + code: 0x79, + mnemonic: "npc_talk_pl_v3", + // TODO: is parameter really RegRef? + params: [{ type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly npc_talk_kill = (OPCODES[0x7a] = new Opcode({ + code: 0x7a, + mnemonic: "npc_talk_kill", + params: [], + push_stack: false, + stack_params: [{ type: TYPE_U32 }], + })); + static readonly npc_crtpk_v3 = (OPCODES[0x7b] = new Opcode({ + code: 0x7b, + mnemonic: "npc_crtpk_v3", + // TODO: is parameter really RegRef? + params: [{ type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly npc_crppk_v3 = (OPCODES[0x7c] = new Opcode({ + code: 0x7c, + mnemonic: "npc_crppk_v3", + // TODO: is parameter really RegRef? + params: [{ type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly npc_crptalk_v3 = (OPCODES[0x7d] = new Opcode({ + code: 0x7d, + mnemonic: "npc_crptalk_v3", + // TODO: is parameter really RegRef? + params: [{ type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly p_look_at_v1 = (OPCODES[0x7e] = new Opcode({ + code: 0x7e, + mnemonic: "p_look_at_v1", + params: [], + push_stack: false, + stack_params: [{ type: TYPE_U32 }, { type: TYPE_U32 }], + })); + static readonly npc_crp_id_v3 = (OPCODES[0x7f] = new Opcode({ + code: 0x7f, + mnemonic: "npc_crp_id_v3", + // TODO: is parameter really RegRef? + params: [{ type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly cam_quake = (OPCODES[0x80] = new Opcode({ + code: 0x80, + mnemonic: "cam_quake", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly cam_adj = (OPCODES[0x81] = new Opcode({ + code: 0x81, + mnemonic: "cam_adj", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly cam_zmin = (OPCODES[0x82] = new Opcode({ + code: 0x82, + mnemonic: "cam_zmin", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly cam_zmout = (OPCODES[0x83] = new Opcode({ + code: 0x83, + mnemonic: "cam_zmout", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly cam_pan_v3 = (OPCODES[0x84] = new Opcode({ + code: 0x84, + mnemonic: "cam_pan_v3", + params: [{ type: new RegTupRefType(TYPE_I32, TYPE_I32, TYPE_I32, TYPE_I32, TYPE_I32) }], + push_stack: false, + stack_params: [], + })); + static readonly game_lev_super = (OPCODES[0x85] = new Opcode({ + code: 0x85, + mnemonic: "game_lev_super", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly game_lev_reset = (OPCODES[0x86] = new Opcode({ + code: 0x86, + mnemonic: "game_lev_reset", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly pos_pipe_v3 = (OPCODES[0x87] = new Opcode({ + code: 0x87, + mnemonic: "pos_pipe_v3", + doc: + "Create a telepipe for the given player slot that takes players back to Pioneer 2 or the Lab.", + params: [ + { + type: new RegTupRefType(TYPE_I32, TYPE_I32, TYPE_I32, TYPE_I32), + read: true, + doc: "X, y, z coordinates and the player slot for the pipe.", + }, + ], + push_stack: false, + stack_params: [], + })); + static readonly if_zone_clear = (OPCODES[0x88] = new Opcode({ + code: 0x88, + mnemonic: "if_zone_clear", + params: [ + { + type: new RegTupRefType(TYPE_I32), + write: true, + }, + { type: new RegTupRefType(TYPE_I32, TYPE_I32), read: true }, + ], + push_stack: false, + stack_params: [], + })); + static readonly chk_ene_num = (OPCODES[0x89] = new Opcode({ + code: 0x89, + mnemonic: "chk_ene_num", + doc: "Retrieves the amount of enemies killed during the quest.", + params: [{ type: new RegTupRefType(TYPE_I32), write: true }], + push_stack: false, + stack_params: [], + })); + static readonly unhide_obj = (OPCODES[0x8a] = new Opcode({ + code: 0x8a, + mnemonic: "unhide_obj", + params: [{ type: new RegTupRefType(TYPE_I32, TYPE_I32, TYPE_I32), read: true }], + push_stack: false, + stack_params: [], + })); + static readonly unhide_ene = (OPCODES[0x8b] = new Opcode({ + code: 0x8b, + mnemonic: "unhide_ene", + params: [{ type: new RegTupRefType(TYPE_I32, TYPE_I32, TYPE_I32, TYPE_I32), read: true }], + push_stack: false, + stack_params: [], + })); + static readonly at_coords_call = (OPCODES[0x8c] = new Opcode({ + code: 0x8c, + mnemonic: "at_coords_call", + params: [ + { + type: new RegTupRefType(TYPE_I32, TYPE_I32, TYPE_I32, TYPE_I32, TYPE_I_LABEL), + read: true, + }, + ], + push_stack: false, + stack_params: [], + })); + static readonly at_coords_talk = (OPCODES[0x8d] = new Opcode({ + code: 0x8d, + mnemonic: "at_coords_talk", + params: [ + { + type: new RegTupRefType(TYPE_I32, TYPE_I32, TYPE_I32, TYPE_I32, TYPE_I_LABEL), + read: true, + }, + ], + push_stack: false, + stack_params: [], + })); + static readonly col_npcin = (OPCODES[0x8e] = new Opcode({ + code: 0x8e, + mnemonic: "col_npcin", + params: [ + { + type: new RegTupRefType(TYPE_I32, TYPE_I32, TYPE_I32, TYPE_I32, TYPE_I_LABEL), + read: true, + }, + ], + push_stack: false, + stack_params: [], + })); + static readonly col_npcinr = (OPCODES[0x8f] = new Opcode({ + code: 0x8f, + mnemonic: "col_npcinr", + params: [{ type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly switch_on = (OPCODES[0x90] = new Opcode({ + code: 0x90, + mnemonic: "switch_on", + params: [], + push_stack: false, + stack_params: [{ type: TYPE_U32 }], + })); + static readonly switch_off = (OPCODES[0x91] = new Opcode({ + code: 0x91, + mnemonic: "switch_off", + params: [], + push_stack: false, + stack_params: [{ type: TYPE_U32 }], + })); + static readonly playbgm_epi = (OPCODES[0x92] = new Opcode({ + code: 0x92, + mnemonic: "playbgm_epi", + params: [], + push_stack: false, + stack_params: [{ type: TYPE_U32 }], + })); + static readonly set_mainwarp = (OPCODES[0x93] = new Opcode({ + code: 0x93, + mnemonic: "set_mainwarp", + params: [], + push_stack: false, + stack_params: [{ type: TYPE_U32 }], + })); + static readonly set_obj_param = (OPCODES[0x94] = new Opcode({ + code: 0x94, + mnemonic: "set_obj_param", + doc: "Creates a targetable object.", + params: [ + { + type: new RegTupRefType( + TYPE_I32, + TYPE_I32, + TYPE_I32, + TYPE_I32, + TYPE_I_LABEL, + TYPE_I32 + ), + read: true, + doc: + "X, y, z coordinates, collision radius, function label and the vertical position of the cursor.", + }, + { type: new RegTupRefType(TYPE), write: true, doc: "Object handle." }, + ], + push_stack: false, + stack_params: [], + })); + static readonly set_floor_handler = (OPCODES[0x95] = new Opcode({ + code: 0x95, + mnemonic: "set_floor_handler", + params: [], + push_stack: false, + stack_params: [{ type: TYPE_U32 }, { type: TYPE_I_LABEL }], + })); + static readonly clr_floor_handler = (OPCODES[0x96] = new Opcode({ + code: 0x96, + mnemonic: "clr_floor_handler", + params: [], + push_stack: false, + stack_params: [{ type: TYPE_U32 }], + })); + static readonly col_plinaw = (OPCODES[0x97] = new Opcode({ + code: 0x97, + mnemonic: "col_plinaw", + params: [{ type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly hud_hide = (OPCODES[0x98] = new Opcode({ + code: 0x98, + mnemonic: "hud_hide", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly hud_show = (OPCODES[0x99] = new Opcode({ + code: 0x99, + mnemonic: "hud_show", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly cine_enable = (OPCODES[0x9a] = new Opcode({ + code: 0x9a, + mnemonic: "cine_enable", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly cine_disable = (OPCODES[0x9b] = new Opcode({ + code: 0x9b, + mnemonic: "cine_disable", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_9c = (OPCODES[0x9c] = new Opcode({ + code: 0x9c, + mnemonic: "unknown_9c", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_9d = (OPCODES[0x9d] = new Opcode({ + code: 0x9d, + mnemonic: "unknown_9d", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_9e = (OPCODES[0x9e] = new Opcode({ + code: 0x9e, + mnemonic: "unknown_9e", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_9f = (OPCODES[0x9f] = new Opcode({ + code: 0x9f, + mnemonic: "unknown_9f", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_a0 = (OPCODES[0xa0] = new Opcode({ + code: 0xa0, + mnemonic: "unknown_a0", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly set_qt_failure = (OPCODES[0xa1] = new Opcode({ + code: 0xa1, + mnemonic: "set_qt_failure", + params: [{ type: TYPE_I_LABEL }], + push_stack: false, + stack_params: [], + })); + static readonly set_qt_success = (OPCODES[0xa2] = new Opcode({ + code: 0xa2, + mnemonic: "set_qt_success", + params: [{ type: TYPE_I_LABEL }], + push_stack: false, + stack_params: [], + })); + static readonly clr_qt_failure = (OPCODES[0xa3] = new Opcode({ + code: 0xa3, + mnemonic: "clr_qt_failure", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly clr_qt_success = (OPCODES[0xa4] = new Opcode({ + code: 0xa4, + mnemonic: "clr_qt_success", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly set_qt_cancel = (OPCODES[0xa5] = new Opcode({ + code: 0xa5, + mnemonic: "set_qt_cancel", + params: [{ type: TYPE_I_LABEL }], + push_stack: false, + stack_params: [], + })); + static readonly clr_qt_cancel = (OPCODES[0xa6] = new Opcode({ + code: 0xa6, + mnemonic: "clr_qt_cancel", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_a7 = (OPCODES[0xa7] = new Opcode({ + code: 0xa7, + mnemonic: "unknown_a7", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly pl_walk_v3 = (OPCODES[0xa8] = new Opcode({ + code: 0xa8, + mnemonic: "pl_walk_v3", + params: [{ type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly unknown_a9 = (OPCODES[0xa9] = new Opcode({ + code: 0xa9, + mnemonic: "unknown_a9", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_aa = (OPCODES[0xaa] = new Opcode({ + code: 0xaa, + mnemonic: "unknown_aa", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_ab = (OPCODES[0xab] = new Opcode({ + code: 0xab, + mnemonic: "unknown_ab", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_ac = (OPCODES[0xac] = new Opcode({ + code: 0xac, + mnemonic: "unknown_ac", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_ad = (OPCODES[0xad] = new Opcode({ + code: 0xad, + mnemonic: "unknown_ad", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_ae = (OPCODES[0xae] = new Opcode({ + code: 0xae, + mnemonic: "unknown_ae", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_af = (OPCODES[0xaf] = new Opcode({ + code: 0xaf, + mnemonic: "unknown_af", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly pl_add_meseta = (OPCODES[0xb0] = new Opcode({ + code: 0xb0, + mnemonic: "pl_add_meseta", + params: [], + push_stack: false, + stack_params: [{ type: TYPE_U32 }, { type: TYPE_U32 }], + })); + static readonly thread_stg = (OPCODES[0xb1] = new Opcode({ + code: 0xb1, + mnemonic: "thread_stg", + params: [{ type: TYPE_I_LABEL }], + push_stack: false, + stack_params: [], + })); + static readonly del_obj_param = (OPCODES[0xb2] = new Opcode({ + code: 0xb2, + mnemonic: "del_obj_param", + params: [{ type: new RegTupRefType(TYPE), read: true, doc: "Object handle." }], + push_stack: false, + stack_params: [], + })); + static readonly item_create = (OPCODES[0xb3] = new Opcode({ + code: 0xb3, + mnemonic: "item_create", + params: [{ type: Type.RegRef }, { type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly item_create2 = (OPCODES[0xb4] = new Opcode({ + code: 0xb4, + mnemonic: "item_create2", + params: [{ type: Type.RegRef }, { type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly item_delete = (OPCODES[0xb5] = new Opcode({ + code: 0xb5, + mnemonic: "item_delete", + params: [{ type: Type.RegRef }, { type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly item_delete2 = (OPCODES[0xb6] = new Opcode({ + code: 0xb6, + mnemonic: "item_delete2", + doc: "Deletes an item from the character's inventory.", + params: [ + { type: new RegTupRefType(TYPE_I32, TYPE_I32, TYPE_I32), read: true }, + { type: new RegTupRefType(TYPE), write: true }, + ], + push_stack: false, + stack_params: [], + })); + static readonly item_check = (OPCODES[0xb7] = new Opcode({ + code: 0xb7, + mnemonic: "item_check", + params: [{ type: Type.RegRef }, { type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly setevt = (OPCODES[0xb8] = new Opcode({ + code: 0xb8, + mnemonic: "setevt", + params: [], + push_stack: false, + stack_params: [{ type: TYPE_U32 }], + })); + static readonly get_difflvl = (OPCODES[0xb9] = new Opcode({ + code: 0xb9, + mnemonic: "get_difflvl", + doc: + "Sets the given register to the current difficulty. 0 For normal, 1 for hard and 2 for both very hard and ultimate.\nUse get_difficulty_level2 if you want to differentiate between very hard and ultimate.", + params: [{ type: new RegTupRefType(TYPE_I32), write: true }], + push_stack: false, + stack_params: [], + })); + static readonly set_qt_exit = (OPCODES[0xba] = new Opcode({ + code: 0xba, + mnemonic: "set_qt_exit", + params: [{ type: TYPE_I_LABEL }], + push_stack: false, + stack_params: [], + })); + static readonly clr_qt_exit = (OPCODES[0xbb] = new Opcode({ + code: 0xbb, + mnemonic: "clr_qt_exit", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_bc = (OPCODES[0xbc] = new Opcode({ + code: 0xbc, + mnemonic: "unknown_bc", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_bd = (OPCODES[0xbd] = new Opcode({ + code: 0xbd, + mnemonic: "unknown_bd", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_be = (OPCODES[0xbe] = new Opcode({ + code: 0xbe, + mnemonic: "unknown_be", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_bf = (OPCODES[0xbf] = new Opcode({ + code: 0xbf, + mnemonic: "unknown_bf", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly particle_v3 = (OPCODES[0xc0] = new Opcode({ + code: 0xc0, + mnemonic: "particle_v3", + params: [{ type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly npc_text = (OPCODES[0xc1] = new Opcode({ + code: 0xc1, + mnemonic: "npc_text", + params: [], + push_stack: false, + stack_params: [{ type: TYPE_U32 }, { type: TYPE_STRING }], + })); + static readonly npc_chkwarp = (OPCODES[0xc2] = new Opcode({ + code: 0xc2, + mnemonic: "npc_chkwarp", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly pl_pkoff = (OPCODES[0xc3] = new Opcode({ + code: 0xc3, + mnemonic: "pl_pkoff", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly map_designate = (OPCODES[0xc4] = new Opcode({ + code: 0xc4, + mnemonic: "map_designate", + params: [{ type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly masterkey_on = (OPCODES[0xc5] = new Opcode({ + code: 0xc5, + mnemonic: "masterkey_on", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly masterkey_off = (OPCODES[0xc6] = new Opcode({ + code: 0xc6, + mnemonic: "masterkey_off", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly window_time = (OPCODES[0xc7] = new Opcode({ + code: 0xc7, + mnemonic: "window_time", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly winend_time = (OPCODES[0xc8] = new Opcode({ + code: 0xc8, + mnemonic: "winend_time", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly winset_time = (OPCODES[0xc9] = new Opcode({ + code: 0xc9, + mnemonic: "winset_time", + params: [{ type: new RegTupRefType(TYPE_I32), write: true }], + push_stack: false, + stack_params: [], + })); + static readonly getmtime = (OPCODES[0xca] = new Opcode({ + code: 0xca, + mnemonic: "getmtime", + params: [{ type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly set_quest_board_handler = (OPCODES[0xcb] = new Opcode({ + code: 0xcb, + mnemonic: "set_quest_board_handler", + params: [], + push_stack: false, + stack_params: [{ type: TYPE_U32 }, { type: TYPE_I_LABEL }, { type: TYPE_STRING }], + })); + static readonly clear_quest_board_handler = (OPCODES[0xcc] = new Opcode({ + code: 0xcc, + mnemonic: "clear_quest_board_handler", + params: [], + push_stack: false, + stack_params: [{ type: TYPE_U32 }], + })); + static readonly particle_id_v3 = (OPCODES[0xcd] = new Opcode({ + code: 0xcd, + mnemonic: "particle_id_v3", + params: [{ type: new RegTupRefType(TYPE_I32, TYPE_I32, TYPE_I32, TYPE_I32), read: true }], + push_stack: false, + stack_params: [], + })); + static readonly npc_crptalk_id_v3 = (OPCODES[0xce] = new Opcode({ + code: 0xce, + mnemonic: "npc_crptalk_id_v3", + params: [{ type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly npc_lang_clean = (OPCODES[0xcf] = new Opcode({ + code: 0xcf, + mnemonic: "npc_lang_clean", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly pl_pkon = (OPCODES[0xd0] = new Opcode({ + code: 0xd0, + mnemonic: "pl_pkon", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly pl_chk_item2 = (OPCODES[0xd1] = new Opcode({ + code: 0xd1, + mnemonic: "pl_chk_item2", + params: [{ type: Type.RegRef }, { type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly enable_mainmenu = (OPCODES[0xd2] = new Opcode({ + code: 0xd2, + mnemonic: "enable_mainmenu", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly disable_mainmenu = (OPCODES[0xd3] = new Opcode({ + code: 0xd3, + mnemonic: "disable_mainmenu", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly start_battlebgm = (OPCODES[0xd4] = new Opcode({ + code: 0xd4, + mnemonic: "start_battlebgm", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly end_battlebgm = (OPCODES[0xd5] = new Opcode({ + code: 0xd5, + mnemonic: "end_battlebgm", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly disp_msg_qb = (OPCODES[0xd6] = new Opcode({ + code: 0xd6, + mnemonic: "disp_msg_qb", + params: [], + push_stack: false, + stack_params: [{ type: TYPE_STRING }], + })); + static readonly close_msg_qb = (OPCODES[0xd7] = new Opcode({ + code: 0xd7, + mnemonic: "close_msg_qb", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly set_eventflag_v3 = (OPCODES[0xd8] = new Opcode({ + code: 0xd8, + mnemonic: "set_eventflag_v3", + params: [], + push_stack: false, + stack_params: [{ type: TYPE_U32 }, { type: TYPE_U32 }], + })); + static readonly sync_leti = (OPCODES[0xd9] = new Opcode({ + code: 0xd9, + mnemonic: "sync_leti", + params: [{ type: new RegTupRefType(TYPE_I32) }, { type: TYPE_I32 }], + push_stack: false, + stack_params: [], + })); + static readonly set_returnhunter = (OPCODES[0xda] = new Opcode({ + code: 0xda, + mnemonic: "set_returnhunter", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly set_returncity = (OPCODES[0xdb] = new Opcode({ + code: 0xdb, + mnemonic: "set_returncity", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly load_pvr = (OPCODES[0xdc] = new Opcode({ + code: 0xdc, + mnemonic: "load_pvr", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly load_midi = (OPCODES[0xdd] = new Opcode({ + code: 0xdd, + mnemonic: "load_midi", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_de = (OPCODES[0xde] = new Opcode({ + code: 0xde, + mnemonic: "unknown_de", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly npc_param_v3 = (OPCODES[0xdf] = new Opcode({ + code: 0xdf, + mnemonic: "npc_param_v3", + params: [], + push_stack: false, + stack_params: [{ type: Type.RegRef }, { type: TYPE_U32 }], + })); + static readonly pad_dragon = (OPCODES[0xe0] = new Opcode({ + code: 0xe0, + mnemonic: "pad_dragon", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly clear_mainwarp = (OPCODES[0xe1] = new Opcode({ + code: 0xe1, + mnemonic: "clear_mainwarp", + params: [], + push_stack: false, + stack_params: [{ type: TYPE_U32 }], + })); + static readonly pcam_param_v3 = (OPCODES[0xe2] = new Opcode({ + code: 0xe2, + mnemonic: "pcam_param_v3", + params: [{ type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly start_setevt_v3 = (OPCODES[0xe3] = new Opcode({ + code: 0xe3, + mnemonic: "start_setevt_v3", + params: [], + push_stack: false, + stack_params: [{ type: Type.RegRef }, { type: TYPE_U32 }], + })); + static readonly warp_on = (OPCODES[0xe4] = new Opcode({ + code: 0xe4, + mnemonic: "warp_on", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly warp_off = (OPCODES[0xe5] = new Opcode({ + code: 0xe5, + mnemonic: "warp_off", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly get_slotnumber = (OPCODES[0xe6] = new Opcode({ + code: 0xe6, + mnemonic: "get_slotnumber", + params: [{ type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly get_servernumber = (OPCODES[0xe7] = new Opcode({ + code: 0xe7, + mnemonic: "get_servernumber", + params: [{ type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly set_eventflag2 = (OPCODES[0xe8] = new Opcode({ + code: 0xe8, + mnemonic: "set_eventflag2", + params: [], + push_stack: false, + stack_params: [{ type: TYPE_U32 }, { type: Type.RegRef }], + })); + static readonly res = (OPCODES[0xe9] = new Opcode({ + code: 0xe9, + mnemonic: "res", + params: [{ type: Type.RegRef }, { type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly unknown_ea = (OPCODES[0xea] = new Opcode({ + code: 0xea, + mnemonic: "unknown_ea", + params: [{ type: Type.RegRef }, { type: TYPE_U32 }], + push_stack: false, + stack_params: [], + })); + static readonly enable_bgmctrl = (OPCODES[0xeb] = new Opcode({ + code: 0xeb, + mnemonic: "enable_bgmctrl", + params: [], + push_stack: false, + stack_params: [{ type: TYPE_U32 }], + })); + static readonly sw_send = (OPCODES[0xec] = new Opcode({ + code: 0xec, + mnemonic: "sw_send", + params: [{ type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly create_bgmctrl = (OPCODES[0xed] = new Opcode({ + code: 0xed, + mnemonic: "create_bgmctrl", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly pl_add_meseta2 = (OPCODES[0xee] = new Opcode({ + code: 0xee, + mnemonic: "pl_add_meseta2", + params: [], + push_stack: false, + stack_params: [{ type: TYPE_U32 }], + })); + static readonly sync_register = (OPCODES[0xef] = new Opcode({ + code: 0xef, + mnemonic: "sync_register", + params: [], + push_stack: false, + stack_params: [ + { type: Type.RegRef }, + { type: TYPE_U32 /* TODO: Can be U32 or Register. */ }, + ], + })); + static readonly send_regwork = (OPCODES[0xf0] = new Opcode({ + code: 0xf0, + mnemonic: "send_regwork", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly leti_fixed_camera_v3 = (OPCODES[0xf1] = new Opcode({ + code: 0xf1, + mnemonic: "leti_fixed_camera_v3", + params: [{ type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly default_camera_pos1 = (OPCODES[0xf2] = new Opcode({ + code: 0xf2, + mnemonic: "default_camera_pos1", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f3 = (OPCODES[0xf3] = new Opcode({ + code: 0xf3, + mnemonic: "unknown_f3", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f4 = (OPCODES[0xf4] = new Opcode({ + code: 0xf4, + mnemonic: "unknown_f4", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f5 = (OPCODES[0xf5] = new Opcode({ + code: 0xf5, + mnemonic: "unknown_f5", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f6 = (OPCODES[0xf6] = new Opcode({ + code: 0xf6, + mnemonic: "unknown_f6", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f7 = (OPCODES[0xf7] = new Opcode({ + code: 0xf7, + mnemonic: "unknown_f7", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f8 = (OPCODES[0xf8] = new Opcode({ + code: 0xf8, + mnemonic: "unknown_f8", + params: [{ type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f9 = (OPCODES[0xf9] = new Opcode({ + code: 0xf9, + mnemonic: "unknown_f9", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly get_gc_number = (OPCODES[0xfa] = new Opcode({ + code: 0xfa, + mnemonic: "get_gc_number", + params: [{ type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly unknown_fb = (OPCODES[0xfb] = new Opcode({ + code: 0xfb, + mnemonic: "unknown_fb", + params: [{ type: TYPE_U16 }], + push_stack: false, + stack_params: [], + })); + static readonly unknown_fc = (OPCODES[0xfc] = new Opcode({ + code: 0xfc, + mnemonic: "unknown_fc", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_fd = (OPCODES[0xfd] = new Opcode({ + code: 0xfd, + mnemonic: "unknown_fd", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_fe = (OPCODES[0xfe] = new Opcode({ + code: 0xfe, + mnemonic: "unknown_fe", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_ff = (OPCODES[0xff] = new Opcode({ + code: 0xff, + mnemonic: "unknown_ff", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f800 = (OPCODES[0xf800] = new Opcode({ + code: 0xf800, + mnemonic: "unknown_f800", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly set_chat_callback = (OPCODES[0xf801] = new Opcode({ + code: 0xf801, + mnemonic: "set_chat_callback", + params: [], + push_stack: false, + stack_params: [{ type: Type.RegRef }, { type: TYPE_STRING }], + })); + static readonly unknown_f802 = (OPCODES[0xf802] = new Opcode({ + code: 0xf802, + mnemonic: "unknown_f802", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f803 = (OPCODES[0xf803] = new Opcode({ + code: 0xf803, + mnemonic: "unknown_f803", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f804 = (OPCODES[0xf804] = new Opcode({ + code: 0xf804, + mnemonic: "unknown_f804", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f805 = (OPCODES[0xf805] = new Opcode({ + code: 0xf805, + mnemonic: "unknown_f805", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f806 = (OPCODES[0xf806] = new Opcode({ + code: 0xf806, + mnemonic: "unknown_f806", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f807 = (OPCODES[0xf807] = new Opcode({ + code: 0xf807, + mnemonic: "unknown_f807", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly get_difficulty_level2 = (OPCODES[0xf808] = new Opcode({ + code: 0xf808, + mnemonic: "get_difficulty_level2", + doc: + "Sets the given register to the current difficulty. 0 For normal, 1 for hard, 2 for very hard and 3 for ultimate.", + params: [{ type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly get_number_of_player1 = (OPCODES[0xf809] = new Opcode({ + code: 0xf809, + mnemonic: "get_number_of_player1", + params: [{ type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly get_coord_of_player = (OPCODES[0xf80a] = new Opcode({ + code: 0xf80a, + mnemonic: "get_coord_of_player", + params: [{ type: Type.RegRef }, { type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f80b = (OPCODES[0xf80b] = new Opcode({ + code: 0xf80b, + mnemonic: "unknown_f80b", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f80c = (OPCODES[0xf80c] = new Opcode({ + code: 0xf80c, + mnemonic: "unknown_f80c", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly map_designate_ex = (OPCODES[0xf80d] = new Opcode({ + code: 0xf80d, + mnemonic: "map_designate_ex", + params: [{ type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f80e = (OPCODES[0xf80e] = new Opcode({ + code: 0xf80e, + mnemonic: "unknown_f80e", + params: [], + push_stack: false, + stack_params: [{ type: TYPE_U32 }], + })); + static readonly unknown_f80f = (OPCODES[0xf80f] = new Opcode({ + code: 0xf80f, + mnemonic: "unknown_f80f", + params: [], + push_stack: false, + stack_params: [{ type: TYPE_U32 }], + })); + static readonly ba_initial_floor = (OPCODES[0xf810] = new Opcode({ + code: 0xf810, + mnemonic: "ba_initial_floor", + params: [], + push_stack: false, + stack_params: [{ type: TYPE_U32 }], + })); + static readonly set_ba_rules = (OPCODES[0xf811] = new Opcode({ + code: 0xf811, + mnemonic: "set_ba_rules", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f812 = (OPCODES[0xf812] = new Opcode({ + code: 0xf812, + mnemonic: "unknown_f812", + params: [], + push_stack: false, + stack_params: [{ type: TYPE_U32 }], + })); + static readonly unknown_f813 = (OPCODES[0xf813] = new Opcode({ + code: 0xf813, + mnemonic: "unknown_f813", + params: [], + push_stack: false, + stack_params: [{ type: TYPE_U32 }], + })); + static readonly unknown_f814 = (OPCODES[0xf814] = new Opcode({ + code: 0xf814, + mnemonic: "unknown_f814", + params: [], + push_stack: false, + stack_params: [{ type: TYPE_U32 }], + })); + static readonly unknown_f815 = (OPCODES[0xf815] = new Opcode({ + code: 0xf815, + mnemonic: "unknown_f815", + params: [], + push_stack: false, + stack_params: [{ type: TYPE_U32 }], + })); + static readonly unknown_f816 = (OPCODES[0xf816] = new Opcode({ + code: 0xf816, + mnemonic: "unknown_f816", + params: [], + push_stack: false, + stack_params: [{ type: TYPE_U32 }], + })); + static readonly unknown_f817 = (OPCODES[0xf817] = new Opcode({ + code: 0xf817, + mnemonic: "unknown_f817", + params: [], + push_stack: false, + stack_params: [{ type: TYPE_U32 }], + })); + static readonly unknown_f818 = (OPCODES[0xf818] = new Opcode({ + code: 0xf818, + mnemonic: "unknown_f818", + params: [], + push_stack: false, + stack_params: [{ type: TYPE_U32 }], + })); + static readonly unknown_f819 = (OPCODES[0xf819] = new Opcode({ + code: 0xf819, + mnemonic: "unknown_f819", + params: [], + push_stack: false, + stack_params: [{ type: TYPE_U32 }], + })); + static readonly unknown_f81a = (OPCODES[0xf81a] = new Opcode({ + code: 0xf81a, + mnemonic: "unknown_f81a", + params: [], + push_stack: false, + stack_params: [{ type: TYPE_U32 }], + })); + static readonly unknown_f81b = (OPCODES[0xf81b] = new Opcode({ + code: 0xf81b, + mnemonic: "unknown_f81b", + params: [], + push_stack: false, + stack_params: [{ type: TYPE_U32 }], + })); + static readonly ba_disp_msg = (OPCODES[0xf81c] = new Opcode({ + code: 0xf81c, + mnemonic: "ba_disp_msg", + params: [], + push_stack: false, + stack_params: [{ type: TYPE_STRING }], + })); + static readonly death_lvl_up = (OPCODES[0xf81d] = new Opcode({ + code: 0xf81d, + mnemonic: "death_lvl_up", + params: [], + push_stack: false, + stack_params: [{ type: TYPE_U32 }], + })); + static readonly death_tech_lvl_up = (OPCODES[0xf81e] = new Opcode({ + code: 0xf81e, + mnemonic: "death_tech_lvl_up", + params: [], + push_stack: false, + stack_params: [{ type: TYPE_U32 }], + })); + static readonly unknown_f81f = (OPCODES[0xf81f] = new Opcode({ + code: 0xf81f, + mnemonic: "unknown_f81f", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly cmode_stage = (OPCODES[0xf820] = new Opcode({ + code: 0xf820, + mnemonic: "cmode_stage", + params: [], + push_stack: false, + stack_params: [{ type: TYPE_U32 }], + })); + static readonly unknown_f821 = (OPCODES[0xf821] = new Opcode({ + code: 0xf821, + mnemonic: "unknown_f821", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f822 = (OPCODES[0xf822] = new Opcode({ + code: 0xf822, + mnemonic: "unknown_f822", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f823 = (OPCODES[0xf823] = new Opcode({ + code: 0xf823, + mnemonic: "unknown_f823", + params: [], + push_stack: false, + stack_params: [{ type: TYPE_U32 }], + })); + static readonly unknown_f824 = (OPCODES[0xf824] = new Opcode({ + code: 0xf824, + mnemonic: "unknown_f824", + params: [], + push_stack: false, + stack_params: [{ type: TYPE_U32 }], + })); + static readonly exp_multiplication = (OPCODES[0xf825] = new Opcode({ + code: 0xf825, + mnemonic: "exp_multiplication", + params: [{ type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly exp_division = (OPCODES[0xf826] = new Opcode({ + code: 0xf826, + mnemonic: "exp_division", + params: [{ type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly get_user_is_dead = (OPCODES[0xf827] = new Opcode({ + code: 0xf827, + mnemonic: "get_user_is_dead", + params: [{ type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly go_floor = (OPCODES[0xf828] = new Opcode({ + code: 0xf828, + mnemonic: "go_floor", + params: [{ type: Type.RegRef }, { type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f829 = (OPCODES[0xf829] = new Opcode({ + code: 0xf829, + mnemonic: "unknown_f829", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f82a = (OPCODES[0xf82a] = new Opcode({ + code: 0xf82a, + mnemonic: "unknown_f82a", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unlock_door2 = (OPCODES[0xf82b] = new Opcode({ + code: 0xf82b, + mnemonic: "unlock_door2", + params: [], + push_stack: false, + stack_params: [{ type: TYPE_U32 }, { type: TYPE_U32 }], + })); + static readonly lock_door2 = (OPCODES[0xf82c] = new Opcode({ + code: 0xf82c, + mnemonic: "lock_door2", + params: [], + push_stack: false, + stack_params: [{ type: TYPE_U32 }, { type: TYPE_U32 }], + })); + static readonly if_switch_not_pressed = (OPCODES[0xf82d] = new Opcode({ + code: 0xf82d, + mnemonic: "if_switch_not_pressed", + params: [{ type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly if_switch_pressed = (OPCODES[0xf82e] = new Opcode({ + code: 0xf82e, + mnemonic: "if_switch_pressed", + params: [{ type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f82f = (OPCODES[0xf82f] = new Opcode({ + code: 0xf82f, + mnemonic: "unknown_f82f", + params: [], + push_stack: false, + stack_params: [{ type: TYPE_U32 }, { type: TYPE_U32 }], + })); + static readonly control_dragon = (OPCODES[0xf830] = new Opcode({ + code: 0xf830, + mnemonic: "control_dragon", + params: [{ type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly release_dragon = (OPCODES[0xf831] = new Opcode({ + code: 0xf831, + mnemonic: "release_dragon", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f832 = (OPCODES[0xf832] = new Opcode({ + code: 0xf832, + mnemonic: "unknown_f832", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f833 = (OPCODES[0xf833] = new Opcode({ + code: 0xf833, + mnemonic: "unknown_f833", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f834 = (OPCODES[0xf834] = new Opcode({ + code: 0xf834, + mnemonic: "unknown_f834", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f835 = (OPCODES[0xf835] = new Opcode({ + code: 0xf835, + mnemonic: "unknown_f835", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f836 = (OPCODES[0xf836] = new Opcode({ + code: 0xf836, + mnemonic: "unknown_f836", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f837 = (OPCODES[0xf837] = new Opcode({ + code: 0xf837, + mnemonic: "unknown_f837", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly shrink = (OPCODES[0xf838] = new Opcode({ + code: 0xf838, + mnemonic: "shrink", + params: [{ type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly unshrink = (OPCODES[0xf839] = new Opcode({ + code: 0xf839, + mnemonic: "unshrink", + params: [{ type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f83a = (OPCODES[0xf83a] = new Opcode({ + code: 0xf83a, + mnemonic: "unknown_f83a", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f83b = (OPCODES[0xf83b] = new Opcode({ + code: 0xf83b, + mnemonic: "unknown_f83b", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly display_clock2 = (OPCODES[0xf83c] = new Opcode({ + code: 0xf83c, + mnemonic: "display_clock2", + params: [{ type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f83d = (OPCODES[0xf83d] = new Opcode({ + code: 0xf83d, + mnemonic: "unknown_f83d", + params: [], + push_stack: false, + stack_params: [{ type: TYPE_U32 }], + })); + static readonly delete_area_title = (OPCODES[0xf83e] = new Opcode({ + code: 0xf83e, + mnemonic: "delete_area_title", + params: [], + push_stack: false, + stack_params: [{ type: TYPE_U32 }], + })); + static readonly unknown_f83f = (OPCODES[0xf83f] = new Opcode({ + code: 0xf83f, + mnemonic: "unknown_f83f", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly load_npc_data = (OPCODES[0xf840] = new Opcode({ + code: 0xf840, + mnemonic: "load_npc_data", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly get_npc_data = (OPCODES[0xf841] = new Opcode({ + code: 0xf841, + mnemonic: "get_npc_data", + params: [{ type: TYPE_D_LABEL }], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f842 = (OPCODES[0xf842] = new Opcode({ + code: 0xf842, + mnemonic: "unknown_f842", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f843 = (OPCODES[0xf843] = new Opcode({ + code: 0xf843, + mnemonic: "unknown_f843", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f844 = (OPCODES[0xf844] = new Opcode({ + code: 0xf844, + mnemonic: "unknown_f844", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f845 = (OPCODES[0xf845] = new Opcode({ + code: 0xf845, + mnemonic: "unknown_f845", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f846 = (OPCODES[0xf846] = new Opcode({ + code: 0xf846, + mnemonic: "unknown_f846", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f847 = (OPCODES[0xf847] = new Opcode({ + code: 0xf847, + mnemonic: "unknown_f847", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly give_damage_score = (OPCODES[0xf848] = new Opcode({ + code: 0xf848, + mnemonic: "give_damage_score", + params: [{ type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly take_damage_score = (OPCODES[0xf849] = new Opcode({ + code: 0xf849, + mnemonic: "take_damage_score", + params: [{ type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly unk_score_f84a = (OPCODES[0xf84a] = new Opcode({ + code: 0xf84a, + mnemonic: "unk_score_f84a", + params: [{ type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly unk_score_f84b = (OPCODES[0xf84b] = new Opcode({ + code: 0xf84b, + mnemonic: "unk_score_f84b", + params: [{ type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly kill_score = (OPCODES[0xf84c] = new Opcode({ + code: 0xf84c, + mnemonic: "kill_score", + params: [{ type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly death_score = (OPCODES[0xf84d] = new Opcode({ + code: 0xf84d, + mnemonic: "death_score", + params: [{ type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly unk_score_f84e = (OPCODES[0xf84e] = new Opcode({ + code: 0xf84e, + mnemonic: "unk_score_f84e", + params: [{ type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly enemy_death_score = (OPCODES[0xf84f] = new Opcode({ + code: 0xf84f, + mnemonic: "enemy_death_score", + params: [{ type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly meseta_score = (OPCODES[0xf850] = new Opcode({ + code: 0xf850, + mnemonic: "meseta_score", + params: [{ type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f851 = (OPCODES[0xf851] = new Opcode({ + code: 0xf851, + mnemonic: "unknown_f851", + params: [{ type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f852 = (OPCODES[0xf852] = new Opcode({ + code: 0xf852, + mnemonic: "unknown_f852", + params: [], + push_stack: false, + stack_params: [{ type: TYPE_U32 }], + })); + static readonly reverse_warps = (OPCODES[0xf853] = new Opcode({ + code: 0xf853, + mnemonic: "reverse_warps", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unreverse_warps = (OPCODES[0xf854] = new Opcode({ + code: 0xf854, + mnemonic: "unreverse_warps", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly set_ult_map = (OPCODES[0xf855] = new Opcode({ + code: 0xf855, + mnemonic: "set_ult_map", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unset_ult_map = (OPCODES[0xf856] = new Opcode({ + code: 0xf856, + mnemonic: "unset_ult_map", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly set_area_title = (OPCODES[0xf857] = new Opcode({ + code: 0xf857, + mnemonic: "set_area_title", + params: [], + push_stack: false, + stack_params: [{ type: TYPE_STRING }], + })); + static readonly unknown_f858 = (OPCODES[0xf858] = new Opcode({ + code: 0xf858, + mnemonic: "unknown_f858", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f859 = (OPCODES[0xf859] = new Opcode({ + code: 0xf859, + mnemonic: "unknown_f859", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly equip_item = (OPCODES[0xf85a] = new Opcode({ + code: 0xf85a, + mnemonic: "equip_item", + params: [{ type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly unequip_item = (OPCODES[0xf85b] = new Opcode({ + code: 0xf85b, + mnemonic: "unequip_item", + params: [], + push_stack: false, + stack_params: [{ type: TYPE_U32 }, { type: TYPE_U32 }], + })); + static readonly unknown_f85c = (OPCODES[0xf85c] = new Opcode({ + code: 0xf85c, + mnemonic: "unknown_f85c", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f85d = (OPCODES[0xf85d] = new Opcode({ + code: 0xf85d, + mnemonic: "unknown_f85d", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f85e = (OPCODES[0xf85e] = new Opcode({ + code: 0xf85e, + mnemonic: "unknown_f85e", + params: [], + push_stack: false, + stack_params: [{ type: TYPE_U32 }], + })); + static readonly unknown_f85f = (OPCODES[0xf85f] = new Opcode({ + code: 0xf85f, + mnemonic: "unknown_f85f", + params: [], + push_stack: false, + stack_params: [{ type: TYPE_U32 }], + })); + static readonly unknown_f860 = (OPCODES[0xf860] = new Opcode({ + code: 0xf860, + mnemonic: "unknown_f860", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f861 = (OPCODES[0xf861] = new Opcode({ + code: 0xf861, + mnemonic: "unknown_f861", + params: [], + push_stack: false, + stack_params: [{ type: TYPE_U32 }], + })); + static readonly unknown_f862 = (OPCODES[0xf862] = new Opcode({ + code: 0xf862, + mnemonic: "unknown_f862", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f863 = (OPCODES[0xf863] = new Opcode({ + code: 0xf863, + mnemonic: "unknown_f863", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly cmode_rank = (OPCODES[0xf864] = new Opcode({ + code: 0xf864, + mnemonic: "cmode_rank", + params: [], + push_stack: false, + stack_params: [{ type: TYPE_U32 }, { type: TYPE_STRING }], + })); + static readonly award_item_name = (OPCODES[0xf865] = new Opcode({ + code: 0xf865, + mnemonic: "award_item_name", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly award_item_select = (OPCODES[0xf866] = new Opcode({ + code: 0xf866, + mnemonic: "award_item_select", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly award_item_give_to = (OPCODES[0xf867] = new Opcode({ + code: 0xf867, + mnemonic: "award_item_give_to", + params: [{ type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f868 = (OPCODES[0xf868] = new Opcode({ + code: 0xf868, + mnemonic: "unknown_f868", + params: [{ type: Type.RegRef }, { type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f869 = (OPCODES[0xf869] = new Opcode({ + code: 0xf869, + mnemonic: "unknown_f869", + params: [{ type: Type.RegRef }, { type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly item_create_cmode = (OPCODES[0xf86a] = new Opcode({ + code: 0xf86a, + mnemonic: "item_create_cmode", + params: [{ type: Type.RegRef }, { type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f86b = (OPCODES[0xf86b] = new Opcode({ + code: 0xf86b, + mnemonic: "unknown_f86b", + params: [{ type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly award_item_ok = (OPCODES[0xf86c] = new Opcode({ + code: 0xf86c, + mnemonic: "award_item_ok", + params: [{ type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f86d = (OPCODES[0xf86d] = new Opcode({ + code: 0xf86d, + mnemonic: "unknown_f86d", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f86e = (OPCODES[0xf86e] = new Opcode({ + code: 0xf86e, + mnemonic: "unknown_f86e", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly ba_set_lives = (OPCODES[0xf86f] = new Opcode({ + code: 0xf86f, + mnemonic: "ba_set_lives", + params: [], + push_stack: false, + stack_params: [{ type: TYPE_U32 }], + })); + static readonly ba_set_tech_lvl = (OPCODES[0xf870] = new Opcode({ + code: 0xf870, + mnemonic: "ba_set_tech_lvl", + params: [], + push_stack: false, + stack_params: [{ type: TYPE_U32 }], + })); + static readonly ba_set_lvl = (OPCODES[0xf871] = new Opcode({ + code: 0xf871, + mnemonic: "ba_set_lvl", + params: [], + push_stack: false, + stack_params: [{ type: TYPE_U32 }], + })); + static readonly ba_set_time_limit = (OPCODES[0xf872] = new Opcode({ + code: 0xf872, + mnemonic: "ba_set_time_limit", + params: [], + push_stack: false, + stack_params: [{ type: TYPE_U32 }], + })); + static readonly boss_is_dead = (OPCODES[0xf873] = new Opcode({ + code: 0xf873, + mnemonic: "boss_is_dead", + params: [{ type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f874 = (OPCODES[0xf874] = new Opcode({ + code: 0xf874, + mnemonic: "unknown_f874", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f875 = (OPCODES[0xf875] = new Opcode({ + code: 0xf875, + mnemonic: "unknown_f875", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f876 = (OPCODES[0xf876] = new Opcode({ + code: 0xf876, + mnemonic: "unknown_f876", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly enable_techs = (OPCODES[0xf877] = new Opcode({ + code: 0xf877, + mnemonic: "enable_techs", + params: [{ type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly disable_techs = (OPCODES[0xf878] = new Opcode({ + code: 0xf878, + mnemonic: "disable_techs", + params: [{ type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly get_gender = (OPCODES[0xf879] = new Opcode({ + code: 0xf879, + mnemonic: "get_gender", + params: [{ type: Type.RegRef }, { type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly get_chara_class = (OPCODES[0xf87a] = new Opcode({ + code: 0xf87a, + mnemonic: "get_chara_class", + params: [{ type: Type.RegRef }, { type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly take_slot_meseta = (OPCODES[0xf87b] = new Opcode({ + code: 0xf87b, + mnemonic: "take_slot_meseta", + params: [{ type: Type.RegRef }, { type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f87c = (OPCODES[0xf87c] = new Opcode({ + code: 0xf87c, + mnemonic: "unknown_f87c", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f87d = (OPCODES[0xf87d] = new Opcode({ + code: 0xf87d, + mnemonic: "unknown_f87d", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f87e = (OPCODES[0xf87e] = new Opcode({ + code: 0xf87e, + mnemonic: "unknown_f87e", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly read_guildcard_flag = (OPCODES[0xf87f] = new Opcode({ + code: 0xf87f, + mnemonic: "read_guildcard_flag", + params: [{ type: Type.RegRef }, { type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f880 = (OPCODES[0xf880] = new Opcode({ + code: 0xf880, + mnemonic: "unknown_f880", + params: [{ type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly get_pl_name = (OPCODES[0xf881] = new Opcode({ + code: 0xf881, + mnemonic: "get_pl_name", + params: [{ type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f882 = (OPCODES[0xf882] = new Opcode({ + code: 0xf882, + mnemonic: "unknown_f882", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f883 = (OPCODES[0xf883] = new Opcode({ + code: 0xf883, + mnemonic: "unknown_f883", + params: [{ type: Type.RegRef }, { type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f884 = (OPCODES[0xf884] = new Opcode({ + code: 0xf884, + mnemonic: "unknown_f884", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f885 = (OPCODES[0xf885] = new Opcode({ + code: 0xf885, + mnemonic: "unknown_f885", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f886 = (OPCODES[0xf886] = new Opcode({ + code: 0xf886, + mnemonic: "unknown_f886", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f887 = (OPCODES[0xf887] = new Opcode({ + code: 0xf887, + mnemonic: "unknown_f887", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly ba_close_msg = (OPCODES[0xf888] = new Opcode({ + code: 0xf888, + mnemonic: "ba_close_msg", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f889 = (OPCODES[0xf889] = new Opcode({ + code: 0xf889, + mnemonic: "unknown_f889", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly get_player_status = (OPCODES[0xf88a] = new Opcode({ + code: 0xf88a, + mnemonic: "get_player_status", + params: [{ type: Type.RegRef }, { type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly send_mail = (OPCODES[0xf88b] = new Opcode({ + code: 0xf88b, + mnemonic: "send_mail", + params: [], + push_stack: false, + stack_params: [{ type: Type.RegRef }, { type: TYPE_STRING }], + })); + static readonly online_check = (OPCODES[0xf88c] = new Opcode({ + code: 0xf88c, + mnemonic: "online_check", + params: [{ type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly chl_set_timerecord = (OPCODES[0xf88d] = new Opcode({ + code: 0xf88d, + mnemonic: "chl_set_timerecord", + params: [{ type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly chl_get_timerecord = (OPCODES[0xf88e] = new Opcode({ + code: 0xf88e, + mnemonic: "chl_get_timerecord", + params: [{ type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f88f = (OPCODES[0xf88f] = new Opcode({ + code: 0xf88f, + mnemonic: "unknown_f88f", + params: [{ type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f890 = (OPCODES[0xf890] = new Opcode({ + code: 0xf890, + mnemonic: "unknown_f890", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly load_enemy_data = (OPCODES[0xf891] = new Opcode({ + code: 0xf891, + mnemonic: "load_enemy_data", + params: [], + push_stack: false, + stack_params: [{ type: TYPE_U32 }], + })); + static readonly get_physical_data = (OPCODES[0xf892] = new Opcode({ + code: 0xf892, + mnemonic: "get_physical_data", + params: [{ type: TYPE_U16 }], + push_stack: false, + stack_params: [], + })); + static readonly get_attack_data = (OPCODES[0xf893] = new Opcode({ + code: 0xf893, + mnemonic: "get_attack_data", + params: [{ type: TYPE_U16 }], + push_stack: false, + stack_params: [], + })); + static readonly get_resist_data = (OPCODES[0xf894] = new Opcode({ + code: 0xf894, + mnemonic: "get_resist_data", + params: [{ type: TYPE_U16 }], + push_stack: false, + stack_params: [], + })); + static readonly get_movement_data = (OPCODES[0xf895] = new Opcode({ + code: 0xf895, + mnemonic: "get_movement_data", + params: [{ type: TYPE_U16 }], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f896 = (OPCODES[0xf896] = new Opcode({ + code: 0xf896, + mnemonic: "unknown_f896", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f897 = (OPCODES[0xf897] = new Opcode({ + code: 0xf897, + mnemonic: "unknown_f897", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly shift_left = (OPCODES[0xf898] = new Opcode({ + code: 0xf898, + mnemonic: "shift_left", + params: [{ type: Type.RegRef }, { type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly shift_right = (OPCODES[0xf899] = new Opcode({ + code: 0xf899, + mnemonic: "shift_right", + params: [{ type: Type.RegRef }, { type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly get_random = (OPCODES[0xf89a] = new Opcode({ + code: 0xf89a, + mnemonic: "get_random", + params: [{ type: Type.RegRef }, { type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); // Resets all registers to 0 (may have to change areas?). - static readonly reset_map = (OPCODES[0xf89b] = new Opcode(0xf89b, "reset_map", [], false, [])); - static readonly disp_chl_retry_menu = (OPCODES[0xf89c] = new Opcode( - 0xf89c, - "disp_chl_retry_menu", - [{ type: Type.Register }], - false, - [] - )); - static readonly chl_reverser = (OPCODES[0xf89d] = new Opcode( - 0xf89d, - "chl_reverser", - [], - false, - [] - )); - static readonly unknown_f89e = (OPCODES[0xf89e] = new Opcode( - 0xf89e, - "unknown_f89e", - [], - false, - [{ type: Type.U32 }] - )); - static readonly unknown_f89f = (OPCODES[0xf89f] = new Opcode( - 0xf89f, - "unknown_f89f", - [{ type: Type.Register }], - false, - [] - )); - static readonly unknown_f8a0 = (OPCODES[0xf8a0] = new Opcode( - 0xf8a0, - "unknown_f8a0", - [], - false, - [] - )); - static readonly unknown_f8a1 = (OPCODES[0xf8a1] = new Opcode( - 0xf8a1, - "unknown_f8a1", - [], - false, - [] - )); - static readonly unknown_f8a2 = (OPCODES[0xf8a2] = new Opcode( - 0xf8a2, - "unknown_f8a2", - [], - false, - [] - )); - static readonly unknown_f8a3 = (OPCODES[0xf8a3] = new Opcode( - 0xf8a3, - "unknown_f8a3", - [], - false, - [] - )); - static readonly unknown_f8a4 = (OPCODES[0xf8a4] = new Opcode( - 0xf8a4, - "unknown_f8a4", - [], - false, - [] - )); - static readonly unknown_f8a5 = (OPCODES[0xf8a5] = new Opcode( - 0xf8a5, - "unknown_f8a5", - [], - false, - [] - )); - static readonly unknown_f8a6 = (OPCODES[0xf8a6] = new Opcode( - 0xf8a6, - "unknown_f8a6", - [], - false, - [] - )); - static readonly unknown_f8a7 = (OPCODES[0xf8a7] = new Opcode( - 0xf8a7, - "unknown_f8a7", - [], - false, - [] - )); - static readonly unknown_f8a8 = (OPCODES[0xf8a8] = new Opcode( - 0xf8a8, - "unknown_f8a8", - [], - false, - [{ type: Type.U32 }] - )); - static readonly unknown_f8a9 = (OPCODES[0xf8a9] = new Opcode( - 0xf8a9, - "unknown_f8a9", - [{ type: Type.Register }], - false, - [] - )); - static readonly unknown_f8aa = (OPCODES[0xf8aa] = new Opcode( - 0xf8aa, - "unknown_f8aa", - [], - false, - [] - )); - static readonly unknown_f8ab = (OPCODES[0xf8ab] = new Opcode( - 0xf8ab, - "unknown_f8ab", - [], - false, - [] - )); - static readonly unknown_f8ac = (OPCODES[0xf8ac] = new Opcode( - 0xf8ac, - "unknown_f8ac", - [], - false, - [] - )); - static readonly get_number_of_player2 = (OPCODES[0xf8ad] = new Opcode( - 0xf8ad, - "get_number_of_player2", - [{ type: Type.Register }], - false, - [] - )); - static readonly unknown_f8ae = (OPCODES[0xf8ae] = new Opcode( - 0xf8ae, - "unknown_f8ae", - [], - false, - [] - )); - static readonly unknown_f8af = (OPCODES[0xf8af] = new Opcode( - 0xf8af, - "unknown_f8af", - [], - false, - [] - )); - static readonly unknown_f8b0 = (OPCODES[0xf8b0] = new Opcode( - 0xf8b0, - "unknown_f8b0", - [], - false, - [] - )); - static readonly unknown_f8b1 = (OPCODES[0xf8b1] = new Opcode( - 0xf8b1, - "unknown_f8b1", - [], - false, - [] - )); - static readonly unknown_f8b2 = (OPCODES[0xf8b2] = new Opcode( - 0xf8b2, - "unknown_f8b2", - [], - false, - [] - )); - static readonly unknown_f8b3 = (OPCODES[0xf8b3] = new Opcode( - 0xf8b3, - "unknown_f8b3", - [], - false, - [] - )); - static readonly unknown_f8b4 = (OPCODES[0xf8b4] = new Opcode( - 0xf8b4, - "unknown_f8b4", - [], - false, - [] - )); - static readonly unknown_f8b5 = (OPCODES[0xf8b5] = new Opcode( - 0xf8b5, - "unknown_f8b5", - [], - false, - [] - )); - static readonly unknown_f8b6 = (OPCODES[0xf8b6] = new Opcode( - 0xf8b6, - "unknown_f8b6", - [], - false, - [] - )); - static readonly unknown_f8b7 = (OPCODES[0xf8b7] = new Opcode( - 0xf8b7, - "unknown_f8b7", - [], - false, - [] - )); - static readonly unknown_f8b8 = (OPCODES[0xf8b8] = new Opcode( - 0xf8b8, - "unknown_f8b8", - [], - false, - [] - )); - static readonly chl_recovery = (OPCODES[0xf8b9] = new Opcode( - 0xf8b9, - "chl_recovery", - [], - false, - [] - )); - static readonly unknown_f8ba = (OPCODES[0xf8ba] = new Opcode( - 0xf8ba, - "unknown_f8ba", - [], - false, - [] - )); - static readonly unknown_f8bb = (OPCODES[0xf8bb] = new Opcode( - 0xf8bb, - "unknown_f8bb", - [], - false, - [] - )); - static readonly set_episode = (OPCODES[0xf8bc] = new Opcode( - 0xf8bc, - "set_episode", - [{ type: Type.U32 }], - false, - [] - )); - static readonly unknown_f8bd = (OPCODES[0xf8bd] = new Opcode( - 0xf8bd, - "unknown_f8bd", - [], - false, - [] - )); - static readonly unknown_f8be = (OPCODES[0xf8be] = new Opcode( - 0xf8be, - "unknown_f8be", - [], - false, - [] - )); - static readonly unknown_f8bf = (OPCODES[0xf8bf] = new Opcode( - 0xf8bf, - "unknown_f8bf", - [], - false, - [] - )); - static readonly file_dl_req = (OPCODES[0xf8c0] = new Opcode(0xf8c0, "file_dl_req", [], false, [ - { type: Type.U32 }, - { type: Type.String }, - ])); - static readonly get_dl_status = (OPCODES[0xf8c1] = new Opcode( - 0xf8c1, - "get_dl_status", - [{ type: Type.Register }], - false, - [] - )); - static readonly gba_unknown4 = (OPCODES[0xf8c2] = new Opcode( - 0xf8c2, - "gba_unknown4", - [], - false, - [] - )); - static readonly get_gba_state = (OPCODES[0xf8c3] = new Opcode( - 0xf8c3, - "get_gba_state", - [{ type: Type.Register }], - false, - [] - )); - static readonly unknown_f8c4 = (OPCODES[0xf8c4] = new Opcode( - 0xf8c4, - "unknown_f8c4", - [{ type: Type.Register }], - false, - [] - )); - static readonly unknown_f8c5 = (OPCODES[0xf8c5] = new Opcode( - 0xf8c5, - "unknown_f8c5", - [{ type: Type.Register }], - false, - [] - )); - static readonly qexit = (OPCODES[0xf8c6] = new Opcode(0xf8c6, "qexit", [], false, [])); - static readonly use_animation = (OPCODES[0xf8c7] = new Opcode( - 0xf8c7, - "use_animation", - [{ type: Type.Register }, { type: Type.Register }], - false, - [] - )); - static readonly stop_animation = (OPCODES[0xf8c8] = new Opcode( - 0xf8c8, - "stop_animation", - [{ type: Type.Register }], - false, - [] - )); - static readonly run_to_coord = (OPCODES[0xf8c9] = new Opcode( - 0xf8c9, - "run_to_coord", - [{ type: Type.Register }, { type: Type.Register }], - false, - [] - )); - static readonly set_slot_invincible = (OPCODES[0xf8ca] = new Opcode( - 0xf8ca, - "set_slot_invincible", - [{ type: Type.Register }, { type: Type.Register }], - false, - [] - )); - static readonly unknown_f8cb = (OPCODES[0xf8cb] = new Opcode( - 0xf8cb, - "unknown_f8cb", - [{ type: Type.Register }], - false, - [] - )); - static readonly set_slot_poison = (OPCODES[0xf8cc] = new Opcode( - 0xf8cc, - "set_slot_poison", - [{ type: Type.Register }], - false, - [] - )); - static readonly set_slot_paralyze = (OPCODES[0xf8cd] = new Opcode( - 0xf8cd, - "set_slot_paralyze", - [{ type: Type.Register }], - false, - [] - )); - static readonly set_slot_shock = (OPCODES[0xf8ce] = new Opcode( - 0xf8ce, - "set_slot_shock", - [{ type: Type.Register }], - false, - [] - )); - static readonly set_slot_freeze = (OPCODES[0xf8cf] = new Opcode( - 0xf8cf, - "set_slot_freeze", - [{ type: Type.Register }], - false, - [] - )); - static readonly set_slot_slow = (OPCODES[0xf8d0] = new Opcode( - 0xf8d0, - "set_slot_slow", - [{ type: Type.Register }], - false, - [] - )); - static readonly set_slot_confuse = (OPCODES[0xf8d1] = new Opcode( - 0xf8d1, - "set_slot_confuse", - [{ type: Type.Register }], - false, - [] - )); - static readonly set_slot_shifta = (OPCODES[0xf8d2] = new Opcode( - 0xf8d2, - "set_slot_shifta", - [{ type: Type.Register }], - false, - [] - )); - static readonly set_slot_deband = (OPCODES[0xf8d3] = new Opcode( - 0xf8d3, - "set_slot_deband", - [{ type: Type.Register }], - false, - [] - )); - static readonly set_slot_jellen = (OPCODES[0xf8d4] = new Opcode( - 0xf8d4, - "set_slot_jellen", - [{ type: Type.Register }], - false, - [] - )); - static readonly set_slot_zalure = (OPCODES[0xf8d5] = new Opcode( - 0xf8d5, - "set_slot_zalure", - [{ type: Type.Register }], - false, - [] - )); - static readonly fleti_fixed_camera = (OPCODES[0xf8d6] = new Opcode( - 0xf8d6, - "fleti_fixed_camera", - [], - false, - [{ type: Type.Register }] - )); - static readonly fleti_locked_camera = (OPCODES[0xf8d7] = new Opcode( - 0xf8d7, - "fleti_locked_camera", - [], - false, - [{ type: Type.U32 }, { type: Type.Register }] - )); - static readonly default_camera_pos2 = (OPCODES[0xf8d8] = new Opcode( - 0xf8d8, - "default_camera_pos2", - [], - false, - [] - )); - static readonly set_motion_blur = (OPCODES[0xf8d9] = new Opcode( - 0xf8d9, - "set_motion_blur", - [], - false, - [] - )); - static readonly set_screen_bw = (OPCODES[0xf8da] = new Opcode( - 0xf8da, - "set_screen_bw", - [], - false, - [] - )); - static readonly unknown_f8db = (OPCODES[0xf8db] = new Opcode( - 0xf8db, - "unknown_f8db", - [], - false, - [ - { type: Type.U32 }, - { type: Type.U32 }, - { type: Type.U32 }, - { type: Type.U32 }, - { type: Type.Register }, - { type: Type.U16 }, - ] - )); + static readonly reset_map = (OPCODES[0xf89b] = new Opcode({ + code: 0xf89b, + mnemonic: "reset_map", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly disp_chl_retry_menu = (OPCODES[0xf89c] = new Opcode({ + code: 0xf89c, + mnemonic: "disp_chl_retry_menu", + params: [{ type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly chl_reverser = (OPCODES[0xf89d] = new Opcode({ + code: 0xf89d, + mnemonic: "chl_reverser", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f89e = (OPCODES[0xf89e] = new Opcode({ + code: 0xf89e, + mnemonic: "unknown_f89e", + params: [], + push_stack: false, + stack_params: [{ type: TYPE_U32 }], + })); + static readonly unknown_f89f = (OPCODES[0xf89f] = new Opcode({ + code: 0xf89f, + mnemonic: "unknown_f89f", + params: [{ type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f8a0 = (OPCODES[0xf8a0] = new Opcode({ + code: 0xf8a0, + mnemonic: "unknown_f8a0", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f8a1 = (OPCODES[0xf8a1] = new Opcode({ + code: 0xf8a1, + mnemonic: "unknown_f8a1", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f8a2 = (OPCODES[0xf8a2] = new Opcode({ + code: 0xf8a2, + mnemonic: "unknown_f8a2", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f8a3 = (OPCODES[0xf8a3] = new Opcode({ + code: 0xf8a3, + mnemonic: "unknown_f8a3", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f8a4 = (OPCODES[0xf8a4] = new Opcode({ + code: 0xf8a4, + mnemonic: "unknown_f8a4", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f8a5 = (OPCODES[0xf8a5] = new Opcode({ + code: 0xf8a5, + mnemonic: "unknown_f8a5", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f8a6 = (OPCODES[0xf8a6] = new Opcode({ + code: 0xf8a6, + mnemonic: "unknown_f8a6", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f8a7 = (OPCODES[0xf8a7] = new Opcode({ + code: 0xf8a7, + mnemonic: "unknown_f8a7", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f8a8 = (OPCODES[0xf8a8] = new Opcode({ + code: 0xf8a8, + mnemonic: "unknown_f8a8", + params: [], + push_stack: false, + stack_params: [{ type: TYPE_U32 }], + })); + static readonly unknown_f8a9 = (OPCODES[0xf8a9] = new Opcode({ + code: 0xf8a9, + mnemonic: "unknown_f8a9", + params: [{ type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f8aa = (OPCODES[0xf8aa] = new Opcode({ + code: 0xf8aa, + mnemonic: "unknown_f8aa", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f8ab = (OPCODES[0xf8ab] = new Opcode({ + code: 0xf8ab, + mnemonic: "unknown_f8ab", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f8ac = (OPCODES[0xf8ac] = new Opcode({ + code: 0xf8ac, + mnemonic: "unknown_f8ac", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly get_number_of_player2 = (OPCODES[0xf8ad] = new Opcode({ + code: 0xf8ad, + mnemonic: "get_number_of_player2", + params: [{ type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f8ae = (OPCODES[0xf8ae] = new Opcode({ + code: 0xf8ae, + mnemonic: "unknown_f8ae", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f8af = (OPCODES[0xf8af] = new Opcode({ + code: 0xf8af, + mnemonic: "unknown_f8af", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f8b0 = (OPCODES[0xf8b0] = new Opcode({ + code: 0xf8b0, + mnemonic: "unknown_f8b0", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f8b1 = (OPCODES[0xf8b1] = new Opcode({ + code: 0xf8b1, + mnemonic: "unknown_f8b1", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f8b2 = (OPCODES[0xf8b2] = new Opcode({ + code: 0xf8b2, + mnemonic: "unknown_f8b2", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f8b3 = (OPCODES[0xf8b3] = new Opcode({ + code: 0xf8b3, + mnemonic: "unknown_f8b3", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f8b4 = (OPCODES[0xf8b4] = new Opcode({ + code: 0xf8b4, + mnemonic: "unknown_f8b4", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f8b5 = (OPCODES[0xf8b5] = new Opcode({ + code: 0xf8b5, + mnemonic: "unknown_f8b5", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f8b6 = (OPCODES[0xf8b6] = new Opcode({ + code: 0xf8b6, + mnemonic: "unknown_f8b6", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f8b7 = (OPCODES[0xf8b7] = new Opcode({ + code: 0xf8b7, + mnemonic: "unknown_f8b7", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f8b8 = (OPCODES[0xf8b8] = new Opcode({ + code: 0xf8b8, + mnemonic: "unknown_f8b8", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly chl_recovery = (OPCODES[0xf8b9] = new Opcode({ + code: 0xf8b9, + mnemonic: "chl_recovery", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f8ba = (OPCODES[0xf8ba] = new Opcode({ + code: 0xf8ba, + mnemonic: "unknown_f8ba", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f8bb = (OPCODES[0xf8bb] = new Opcode({ + code: 0xf8bb, + mnemonic: "unknown_f8bb", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly set_episode = (OPCODES[0xf8bc] = new Opcode({ + code: 0xf8bc, + mnemonic: "set_episode", + params: [{ type: TYPE_U32 }], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f8bd = (OPCODES[0xf8bd] = new Opcode({ + code: 0xf8bd, + mnemonic: "unknown_f8bd", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f8be = (OPCODES[0xf8be] = new Opcode({ + code: 0xf8be, + mnemonic: "unknown_f8be", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f8bf = (OPCODES[0xf8bf] = new Opcode({ + code: 0xf8bf, + mnemonic: "unknown_f8bf", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly file_dl_req = (OPCODES[0xf8c0] = new Opcode({ + code: 0xf8c0, + mnemonic: "file_dl_req", + params: [], + push_stack: false, + stack_params: [{ type: TYPE_U32 }, { type: TYPE_STRING }], + })); + static readonly get_dl_status = (OPCODES[0xf8c1] = new Opcode({ + code: 0xf8c1, + mnemonic: "get_dl_status", + params: [{ type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly gba_unknown4 = (OPCODES[0xf8c2] = new Opcode({ + code: 0xf8c2, + mnemonic: "gba_unknown4", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly get_gba_state = (OPCODES[0xf8c3] = new Opcode({ + code: 0xf8c3, + mnemonic: "get_gba_state", + params: [{ type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f8c4 = (OPCODES[0xf8c4] = new Opcode({ + code: 0xf8c4, + mnemonic: "unknown_f8c4", + params: [{ type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f8c5 = (OPCODES[0xf8c5] = new Opcode({ + code: 0xf8c5, + mnemonic: "unknown_f8c5", + params: [{ type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly qexit = (OPCODES[0xf8c6] = new Opcode({ + code: 0xf8c6, + mnemonic: "qexit", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly use_animation = (OPCODES[0xf8c7] = new Opcode({ + code: 0xf8c7, + mnemonic: "use_animation", + params: [{ type: Type.RegRef }, { type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly stop_animation = (OPCODES[0xf8c8] = new Opcode({ + code: 0xf8c8, + mnemonic: "stop_animation", + params: [{ type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly run_to_coord = (OPCODES[0xf8c9] = new Opcode({ + code: 0xf8c9, + mnemonic: "run_to_coord", + params: [{ type: Type.RegRef }, { type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly set_slot_invincible = (OPCODES[0xf8ca] = new Opcode({ + code: 0xf8ca, + mnemonic: "set_slot_invincible", + params: [{ type: Type.RegRef }, { type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f8cb = (OPCODES[0xf8cb] = new Opcode({ + code: 0xf8cb, + mnemonic: "unknown_f8cb", + params: [{ type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly set_slot_poison = (OPCODES[0xf8cc] = new Opcode({ + code: 0xf8cc, + mnemonic: "set_slot_poison", + params: [{ type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly set_slot_paralyze = (OPCODES[0xf8cd] = new Opcode({ + code: 0xf8cd, + mnemonic: "set_slot_paralyze", + params: [{ type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly set_slot_shock = (OPCODES[0xf8ce] = new Opcode({ + code: 0xf8ce, + mnemonic: "set_slot_shock", + params: [{ type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly set_slot_freeze = (OPCODES[0xf8cf] = new Opcode({ + code: 0xf8cf, + mnemonic: "set_slot_freeze", + params: [{ type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly set_slot_slow = (OPCODES[0xf8d0] = new Opcode({ + code: 0xf8d0, + mnemonic: "set_slot_slow", + params: [{ type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly set_slot_confuse = (OPCODES[0xf8d1] = new Opcode({ + code: 0xf8d1, + mnemonic: "set_slot_confuse", + params: [{ type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly set_slot_shifta = (OPCODES[0xf8d2] = new Opcode({ + code: 0xf8d2, + mnemonic: "set_slot_shifta", + params: [{ type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly set_slot_deband = (OPCODES[0xf8d3] = new Opcode({ + code: 0xf8d3, + mnemonic: "set_slot_deband", + params: [{ type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly set_slot_jellen = (OPCODES[0xf8d4] = new Opcode({ + code: 0xf8d4, + mnemonic: "set_slot_jellen", + params: [{ type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly set_slot_zalure = (OPCODES[0xf8d5] = new Opcode({ + code: 0xf8d5, + mnemonic: "set_slot_zalure", + params: [{ type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly fleti_fixed_camera = (OPCODES[0xf8d6] = new Opcode({ + code: 0xf8d6, + mnemonic: "fleti_fixed_camera", + params: [], + push_stack: false, + stack_params: [{ type: Type.RegRef }], + })); + static readonly fleti_locked_camera = (OPCODES[0xf8d7] = new Opcode({ + code: 0xf8d7, + mnemonic: "fleti_locked_camera", + params: [], + push_stack: false, + stack_params: [{ type: TYPE_U32 }, { type: Type.RegRef }], + })); + static readonly default_camera_pos2 = (OPCODES[0xf8d8] = new Opcode({ + code: 0xf8d8, + mnemonic: "default_camera_pos2", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly set_motion_blur = (OPCODES[0xf8d9] = new Opcode({ + code: 0xf8d9, + mnemonic: "set_motion_blur", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly set_screen_bw = (OPCODES[0xf8da] = new Opcode({ + code: 0xf8da, + mnemonic: "set_screen_bw", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f8db = (OPCODES[0xf8db] = new Opcode({ + code: 0xf8db, + mnemonic: "unknown_f8db", + params: [], + push_stack: false, + stack_params: [ + { type: TYPE_U32 }, + { type: TYPE_U32 }, + { type: TYPE_U32 }, + { type: TYPE_U32 }, + { type: Type.RegRef }, + { type: TYPE_U16 }, + ], + })); // TODO: 3rd parameter is a string data reference. - static readonly npc_action_string = (OPCODES[0xf8dc] = new Opcode( - 0xf8dc, - "npc_action_string", - [{ type: Type.Register }, { type: Type.Register }, { type: Type.DLabel }], - false, - [] - )); - static readonly get_pad_cond = (OPCODES[0xf8dd] = new Opcode( - 0xf8dd, - "get_pad_cond", - [{ type: Type.Register }, { type: Type.Register }], - false, - [] - )); - static readonly get_button_cond = (OPCODES[0xf8de] = new Opcode( - 0xf8de, - "get_button_cond", - [{ type: Type.Register }, { type: Type.Register }], - false, - [] - )); - static readonly freeze_enemies = (OPCODES[0xf8df] = new Opcode( - 0xf8df, - "freeze_enemies", - [], - false, - [] - )); - static readonly unfreeze_enemies = (OPCODES[0xf8e0] = new Opcode( - 0xf8e0, - "unfreeze_enemies", - [], - false, - [] - )); - static readonly freeze_everything = (OPCODES[0xf8e1] = new Opcode( - 0xf8e1, - "freeze_everything", - [], - false, - [] - )); - static readonly unfreeze_everything = (OPCODES[0xf8e2] = new Opcode( - 0xf8e2, - "unfreeze_everything", - [], - false, - [] - )); - static readonly restore_hp = (OPCODES[0xf8e3] = new Opcode( - 0xf8e3, - "restore_hp", - [{ type: Type.Register }], - false, - [] - )); - static readonly restore_tp = (OPCODES[0xf8e4] = new Opcode( - 0xf8e4, - "restore_tp", - [{ type: Type.Register }], - false, - [] - )); - static readonly close_chat_bubble = (OPCODES[0xf8e5] = new Opcode( - 0xf8e5, - "close_chat_bubble", - [{ type: Type.Register }], - false, - [] - )); - static readonly move_coords_object = (OPCODES[0xf8e6] = new Opcode( - 0xf8e6, - "move_coords_object ", - [{ type: Type.Register }, { type: Type.Register }], - false, - [] - )); - static readonly at_coords_call_ex = (OPCODES[0xf8e7] = new Opcode( - 0xf8e7, - "at_coords_call_ex", - [{ type: Type.Register }, { type: Type.Register }], - false, - [] - )); - static readonly unknown_f8e8 = (OPCODES[0xf8e8] = new Opcode( - 0xf8e8, - "unknown_f8e8", - [{ type: Type.Register }, { type: Type.Register }], - false, - [] - )); - static readonly unknown_f8e9 = (OPCODES[0xf8e9] = new Opcode( - 0xf8e9, - "unknown_f8e9", - [{ type: Type.Register }, { type: Type.Register }], - false, - [] - )); - static readonly unknown_f8ea = (OPCODES[0xf8ea] = new Opcode( - 0xf8ea, - "unknown_f8ea", - [{ type: Type.Register }, { type: Type.Register }], - false, - [] - )); - static readonly unknown_f8eb = (OPCODES[0xf8eb] = new Opcode( - 0xf8eb, - "unknown_f8eb", - [{ type: Type.Register }, { type: Type.Register }], - false, - [] - )); - static readonly unknown_f8ec = (OPCODES[0xf8ec] = new Opcode( - 0xf8ec, - "unknown_f8ec", - [{ type: Type.Register }, { type: Type.Register }], - false, - [] - )); - static readonly animation_check = (OPCODES[0xf8ed] = new Opcode( - 0xf8ed, - "animation_check", - [{ type: Type.Register }, { type: Type.Register }], - false, - [] - )); - static readonly call_image_data = (OPCODES[0xf8ee] = new Opcode( - 0xf8ee, - "call_image_data", - [], - false, - [{ type: Type.U32 }, { type: Type.U16 }] - )); - static readonly unknown_f8ef = (OPCODES[0xf8ef] = new Opcode( - 0xf8ef, - "unknown_f8ef", - [], - false, - [] - )); - static readonly turn_off_bgm_p2 = (OPCODES[0xf8f0] = new Opcode( - 0xf8f0, - "turn_off_bgm_p2", - [], - false, - [] - )); - static readonly turn_on_bgm_p2 = (OPCODES[0xf8f1] = new Opcode( - 0xf8f1, - "turn_on_bgm_p2", - [], - false, - [] - )); - static readonly load_unk_data = (OPCODES[0xf8f2] = new Opcode( - 0xf8f2, - "load_unk_data", - [], - false, - [ - { type: Type.U32 }, - { type: Type.U32 }, - { type: Type.U32 }, - { type: Type.U32 }, - { type: Type.Register }, - { type: Type.DLabel }, - ] - )); - static readonly particle2 = (OPCODES[0xf8f3] = new Opcode(0xf8f3, "particle2", [], false, [ - { type: Type.Register }, - { type: Type.U32 }, - { type: Type.F32 }, - ])); - static readonly unknown_f8f4 = (OPCODES[0xf8f4] = new Opcode( - 0xf8f4, - "unknown_f8f4", - [], - false, - [] - )); - static readonly unknown_f8f5 = (OPCODES[0xf8f5] = new Opcode( - 0xf8f5, - "unknown_f8f5", - [], - false, - [] - )); - static readonly unknown_f8f6 = (OPCODES[0xf8f6] = new Opcode( - 0xf8f6, - "unknown_f8f6", - [], - false, - [] - )); - static readonly unknown_f8f7 = (OPCODES[0xf8f7] = new Opcode( - 0xf8f7, - "unknown_f8f7", - [], - false, - [] - )); - static readonly unknown_f8f8 = (OPCODES[0xf8f8] = new Opcode( - 0xf8f8, - "unknown_f8f8", - [], - false, - [] - )); - static readonly unknown_f8f9 = (OPCODES[0xf8f9] = new Opcode( - 0xf8f9, - "unknown_f8f9", - [], - false, - [] - )); - static readonly unknown_f8fa = (OPCODES[0xf8fa] = new Opcode( - 0xf8fa, - "unknown_f8fa", - [], - false, - [] - )); - static readonly unknown_f8fb = (OPCODES[0xf8fb] = new Opcode( - 0xf8fb, - "unknown_f8fb", - [], - false, - [] - )); - static readonly unknown_f8fc = (OPCODES[0xf8fc] = new Opcode( - 0xf8fc, - "unknown_f8fc", - [], - false, - [] - )); - static readonly unknown_f8fd = (OPCODES[0xf8fd] = new Opcode( - 0xf8fd, - "unknown_f8fd", - [], - false, - [] - )); - static readonly unknown_f8fe = (OPCODES[0xf8fe] = new Opcode( - 0xf8fe, - "unknown_f8fe", - [], - false, - [] - )); - static readonly unknown_f8ff = (OPCODES[0xf8ff] = new Opcode( - 0xf8ff, - "unknown_f8ff", - [], - false, - [] - )); - static readonly unknown_f900 = (OPCODES[0xf900] = new Opcode( - 0xf900, - "unknown_f900", - [], - false, - [] - )); - static readonly dec2float = (OPCODES[0xf901] = new Opcode( - 0xf901, - "dec2float", - [{ type: Type.Register }, { type: Type.Register }], - false, - [] - )); - static readonly float2dec = (OPCODES[0xf902] = new Opcode( - 0xf902, - "float2dec", - [{ type: Type.Register }, { type: Type.Register }], - false, - [] - )); - static readonly flet = (OPCODES[0xf903] = new Opcode( - 0xf903, - "flet", - [{ type: Type.Register }, { type: Type.Register }], - false, - [] - )); - static readonly fleti = (OPCODES[0xf904] = new Opcode( - 0xf904, - "fleti", - [{ type: Type.Register }, { type: Type.F32 }], - false, - [] - )); - static readonly unknown_f905 = (OPCODES[0xf905] = new Opcode( - 0xf905, - "unknown_f905", - [], - false, - [] - )); - static readonly unknown_f906 = (OPCODES[0xf906] = new Opcode( - 0xf906, - "unknown_f906", - [], - false, - [] - )); - static readonly unknown_f907 = (OPCODES[0xf907] = new Opcode( - 0xf907, - "unknown_f907", - [], - false, - [] - )); - static readonly fadd = (OPCODES[0xf908] = new Opcode( - 0xf908, - "fadd", - [{ type: Type.Register }, { type: Type.Register }], - false, - [] - )); - static readonly faddi = (OPCODES[0xf909] = new Opcode( - 0xf909, - "faddi", - [{ type: Type.Register }, { type: Type.F32 }], - false, - [] - )); - static readonly fsub = (OPCODES[0xf90a] = new Opcode( - 0xf90a, - "fsub", - [{ type: Type.Register }, { type: Type.Register }], - false, - [] - )); - static readonly fsubi = (OPCODES[0xf90b] = new Opcode( - 0xf90b, - "fsubi", - [{ type: Type.Register }, { type: Type.F32 }], - false, - [] - )); - static readonly fmul = (OPCODES[0xf90c] = new Opcode( - 0xf90c, - "fmul", - [{ type: Type.Register }, { type: Type.Register }], - false, - [] - )); - static readonly fmuli = (OPCODES[0xf90d] = new Opcode( - 0xf90d, - "fmuli", - [{ type: Type.Register }, { type: Type.F32 }], - false, - [] - )); - static readonly fdiv = (OPCODES[0xf90e] = new Opcode( - 0xf90e, - "fdiv", - [{ type: Type.Register }, { type: Type.Register }], - false, - [] - )); - static readonly fdivi = (OPCODES[0xf90f] = new Opcode( - 0xf90f, - "fdivi", - [{ type: Type.Register }, { type: Type.F32 }], - false, - [] - )); - static readonly get_unknown_count = (OPCODES[0xf910] = new Opcode( - 0xf910, - "get_unknown_count", - [], - false, - [{ type: Type.U32 }, { type: Type.Register }] - )); - static readonly get_stackable_item_count = (OPCODES[0xf911] = new Opcode( - 0xf911, - "get_stackable_item_count", - [{ type: Type.Register }, { type: Type.Register }], - false, - [] - )); - static readonly freeze_and_hide_equip = (OPCODES[0xf912] = new Opcode( - 0xf912, - "freeze_and_hide_equip", - [], - false, - [] - )); - static readonly thaw_and_show_equip = (OPCODES[0xf913] = new Opcode( - 0xf913, - "thaw_and_show_equip", - [], - false, - [] - )); - static readonly set_palettex_callback = (OPCODES[0xf914] = new Opcode( - 0xf914, - "set_palettex_callback", - [], - false, - [{ type: Type.Register }, { type: Type.ILabel }] - )); - static readonly activate_palettex = (OPCODES[0xf915] = new Opcode( - 0xf915, - "activate_palettex", - [], - false, - [{ type: Type.Register }] - )); - static readonly enable_palettex = (OPCODES[0xf916] = new Opcode( - 0xf916, - "enable_palettex", - [], - false, - [{ type: Type.Register }] - )); - static readonly restore_palettex = (OPCODES[0xf917] = new Opcode( - 0xf917, - "restore_palettex", - [], - false, - [{ type: Type.U32 }] - )); - static readonly disable_palettex = (OPCODES[0xf918] = new Opcode( - 0xf918, - "disable_palettex", - [], - false, - [{ type: Type.U32 }] - )); - static readonly get_palettex_activated = (OPCODES[0xf919] = new Opcode( - 0xf919, - "get_palettex_activated", - [], - false, - [{ type: Type.U32 }, { type: Type.Register }] - )); - static readonly get_unknown_palettex_status = (OPCODES[0xf91a] = new Opcode( - 0xf91a, - "get_unknown_palettex_status", - [], - false, - [{ type: Type.U32 }, { type: Type.Register }] - )); - static readonly disable_movement2 = (OPCODES[0xf91b] = new Opcode( - 0xf91b, - "disable_movement2", - [], - false, - [{ type: Type.Register }] - )); - static readonly enable_movement2 = (OPCODES[0xf91c] = new Opcode( - 0xf91c, - "enable_movement2", - [], - false, - [{ type: Type.Register }] - )); - static readonly get_time_played = (OPCODES[0xf91d] = new Opcode( - 0xf91d, - "get_time_played", - [{ type: Type.Register }], - false, - [] - )); - static readonly get_guildcard_total = (OPCODES[0xf91e] = new Opcode( - 0xf91e, - "get_guildcard_total", - [{ type: Type.Register }], - false, - [] - )); - static readonly get_slot_meseta = (OPCODES[0xf91f] = new Opcode( - 0xf91f, - "get_slot_meseta", - [{ type: Type.Register }], - false, - [] - )); - static readonly get_player_level = (OPCODES[0xf920] = new Opcode( - 0xf920, - "get_player_level", - [], - false, - [{ type: Type.U32 }, { type: Type.Register }] - )); - static readonly get_section_id = (OPCODES[0xf921] = new Opcode( - 0xf921, - "get_section_id", - [], - false, - [{ type: Type.U32 }, { type: Type.Register }] - )); - static readonly get_player_hp = (OPCODES[0xf922] = new Opcode( - 0xf922, - "get_player_hp", - [], - false, - [{ type: Type.Register }, { type: Type.Register }] - )); - static readonly get_floor_number = (OPCODES[0xf923] = new Opcode( - 0xf923, - "get_floor_number", - [], - false, - [{ type: Type.Register }, { type: Type.Register }] - )); - static readonly get_coord_player_detect = (OPCODES[0xf924] = new Opcode( - 0xf924, - "get_coord_player_detect", - [{ type: Type.Register }, { type: Type.Register }], - false, - [] - )); - static readonly read_global_flag = (OPCODES[0xf925] = new Opcode( - 0xf925, - "read_global_flag", - [], - false, - [{ type: Type.U8 }, { type: Type.Register }] - )); - static readonly write_global_flag = (OPCODES[0xf926] = new Opcode( - 0xf926, - "write_global_flag", - [], - false, - [{ type: Type.U8 }, { type: Type.Register }] - )); - static readonly unknown_f927 = (OPCODES[0xf927] = new Opcode( - 0xf927, - "unknown_f927", - [{ type: Type.Register }, { type: Type.Register }], - false, - [] - )); - static readonly floor_player_detect = (OPCODES[0xf928] = new Opcode( - 0xf928, - "floor_player_detect", - [{ type: Type.Register }], - false, - [] - )); - static readonly read_disk_file = (OPCODES[0xf929] = new Opcode( - 0xf929, - "read_disk_file", - [], - false, - [{ type: Type.String }] - )); - static readonly open_pack_select = (OPCODES[0xf92a] = new Opcode( - 0xf92a, - "open_pack_select", - [], - false, - [] - )); - static readonly item_select = (OPCODES[0xf92b] = new Opcode( - 0xf92b, - "item_select", - [{ type: Type.Register }], - false, - [] - )); - static readonly get_item_id = (OPCODES[0xf92c] = new Opcode( - 0xf92c, - "get_item_id", - [{ type: Type.Register }], - false, - [] - )); - static readonly color_change = (OPCODES[0xf92d] = new Opcode( - 0xf92d, - "color_change", - [], - false, - [ - { type: Type.Register }, - { type: Type.Register }, - { type: Type.Register }, - { type: Type.Register }, - { type: Type.Register }, - ] - )); - static readonly send_statistic = (OPCODES[0xf92e] = new Opcode( - 0xf92e, - "send_statistic", - [], - false, - [ - { type: Type.U32 }, - { type: Type.U32 }, - { type: Type.U32 }, - { type: Type.U32 }, - { type: Type.U32 }, - { type: Type.U32 }, - { type: Type.U32 }, - { type: Type.U32 }, - ] - )); - static readonly unknown_f92f = (OPCODES[0xf92f] = new Opcode( - 0xf92f, - "unknown_f92f", - [], - false, - [{ type: Type.U32 }, { type: Type.U32 }] - )); - static readonly chat_box = (OPCODES[0xf930] = new Opcode(0xf930, "chat_box", [], false, [ - { type: Type.U32 }, - { type: Type.U32 }, - { type: Type.U32 }, - { type: Type.U32 }, - { type: Type.U32 }, - { type: Type.String }, - ])); - static readonly chat_bubble = (OPCODES[0xf931] = new Opcode(0xf931, "chat_bubble", [], false, [ - { type: Type.U32 }, - { type: Type.String }, - ])); - static readonly unknown_f932 = (OPCODES[0xf932] = new Opcode( - 0xf932, - "unknown_f932", - [], - false, - [] - )); - static readonly unknown_f933 = (OPCODES[0xf933] = new Opcode( - 0xf933, - "unknown_f933", - [{ type: Type.Register }], - false, - [] - )); - static readonly scroll_text = (OPCODES[0xf934] = new Opcode(0xf934, "scroll_text", [], false, [ - { type: Type.U32 }, - { type: Type.U32 }, - { type: Type.U32 }, - { type: Type.U32 }, - { type: Type.U32 }, - { type: Type.F32 }, - { type: Type.Register }, - { type: Type.String }, - ])); - static readonly gba_unknown1 = (OPCODES[0xf935] = new Opcode( - 0xf935, - "gba_unknown1", - [], - false, - [] - )); - static readonly gba_unknown2 = (OPCODES[0xf936] = new Opcode( - 0xf936, - "gba_unknown2", - [], - false, - [] - )); - static readonly gba_unknown3 = (OPCODES[0xf937] = new Opcode( - 0xf937, - "gba_unknown3", - [], - false, - [] - )); - static readonly add_damage_to = (OPCODES[0xf938] = new Opcode( - 0xf938, - "add_damage_to", - [], - false, - [{ type: Type.U32 }, { type: Type.U32 }] - )); - static readonly item_delete3 = (OPCODES[0xf939] = new Opcode( - 0xf939, - "item_delete3", - [], - false, - [{ type: Type.U32 }] - )); - static readonly get_item_info = (OPCODES[0xf93a] = new Opcode( - 0xf93a, - "get_item_info", - [], - false, - [{ type: Type.U32 }, { type: Type.Register }] - )); - static readonly item_packing1 = (OPCODES[0xf93b] = new Opcode( - 0xf93b, - "item_packing1", - [], - false, - [{ type: Type.U32 }] - )); - static readonly item_packing2 = (OPCODES[0xf93c] = new Opcode( - 0xf93c, - "item_packing2", - [], - false, - [{ type: Type.U32 }, { type: Type.U32 }] - )); - static readonly get_lang_setting = (OPCODES[0xf93d] = new Opcode( - 0xf93d, - "get_lang_setting", - [], - false, - [{ type: Type.Register }] - )); - static readonly prepare_statistic = (OPCODES[0xf93e] = new Opcode( - 0xf93e, - "prepare_statistic", - [], - false, - [{ type: Type.U32 }, { type: Type.ILabel }, { type: Type.ILabel }] - )); - static readonly keyword_detect = (OPCODES[0xf93f] = new Opcode( - 0xf93f, - "keyword_detect", - [], - false, - [] - )); - static readonly keyword = (OPCODES[0xf940] = new Opcode(0xf940, "keyword", [], false, [ - { type: Type.Register }, - { type: Type.U32 }, - { type: Type.String }, - ])); - static readonly get_guildcard_num = (OPCODES[0xf941] = new Opcode( - 0xf941, - "get_guildcard_num", - [], - false, - [{ type: Type.U32 }, { type: Type.Register }] - )); - static readonly unknown_f942 = (OPCODES[0xf942] = new Opcode( - 0xf942, - "unknown_f942", - [], - false, - [] - )); - static readonly unknown_f943 = (OPCODES[0xf943] = new Opcode( - 0xf943, - "unknown_f943", - [], - false, - [] - )); - static readonly get_wrap_status = (OPCODES[0xf944] = new Opcode( - 0xf944, - "get_wrap_status", - [], - false, - [{ type: Type.U32 }, { type: Type.Register }] - )); - static readonly initial_floor = (OPCODES[0xf945] = new Opcode( - 0xf945, - "initial_floor", - [], - false, - [{ type: Type.U32 }] - )); - static readonly sin = (OPCODES[0xf946] = new Opcode(0xf946, "sin", [], false, [ - { type: Type.Register }, - { type: Type.U32 }, - ])); - static readonly cos = (OPCODES[0xf947] = new Opcode(0xf947, "cos", [], false, [ - { type: Type.Register }, - { type: Type.U32 }, - ])); - static readonly unknown_f948 = (OPCODES[0xf948] = new Opcode( - 0xf948, - "unknown_f948", - [], - false, - [] - )); - static readonly unknown_f949 = (OPCODES[0xf949] = new Opcode( - 0xf949, - "unknown_f949", - [], - false, - [] - )); - static readonly boss_is_dead2 = (OPCODES[0xf94a] = new Opcode( - 0xf94a, - "boss_is_dead2", - [{ type: Type.Register }], - false, - [] - )); - static readonly unknown_f94b = (OPCODES[0xf94b] = new Opcode( - 0xf94b, - "unknown_f94b", - [{ type: Type.Register }], - false, - [] - )); - static readonly unknown_f94c = (OPCODES[0xf94c] = new Opcode( - 0xf94c, - "unknown_f94c", - [{ type: Type.Register }], - false, - [] - )); - static readonly is_there_cardbattle = (OPCODES[0xf94d] = new Opcode( - 0xf94d, - "is_there_cardbattle", - [{ type: Type.Register }], - false, - [] - )); - static readonly unknown_f94e = (OPCODES[0xf94e] = new Opcode( - 0xf94e, - "unknown_f94e", - [], - false, - [] - )); - static readonly unknown_f94f = (OPCODES[0xf94f] = new Opcode( - 0xf94f, - "unknown_f94f", - [], - false, - [] - )); - static readonly bb_p2_menu = (OPCODES[0xf950] = new Opcode(0xf950, "bb_p2_menu", [], false, [ - { type: Type.U32 }, - ])); - static readonly bb_map_designate = (OPCODES[0xf951] = new Opcode( - 0xf951, - "bb_map_designate", - [{ type: Type.U8 }, { type: Type.U16 }, { type: Type.U8 }, { type: Type.U8 }], - false, - [] - )); - static readonly bb_get_number_in_pack = (OPCODES[0xf952] = new Opcode( - 0xf952, - "bb_get_number_in_pack", - [{ type: Type.Register }], - false, - [] - )); - static readonly bb_swap_item = (OPCODES[0xf953] = new Opcode( - 0xf953, - "bb_swap_item", - [], - false, - [ - { type: Type.U32 }, - { type: Type.U32 }, - { type: Type.U32 }, - { type: Type.U32 }, - { type: Type.U32 }, - { type: Type.U32 }, - { type: Type.ILabel }, - { type: Type.ILabel }, - ] - )); - static readonly bb_check_wrap = (OPCODES[0xf954] = new Opcode( - 0xf954, - "bb_check_wrap", - [], - false, - [{ type: Type.Register }, { type: Type.Register }] - )); - static readonly bb_exchange_pd_item = (OPCODES[0xf955] = new Opcode( - 0xf955, - "bb_exchange_pd_item", - [], - false, - [ - { type: Type.Register }, - { type: Type.Register }, - { type: Type.Register }, - { type: Type.ILabel }, - { type: Type.ILabel }, - ] - )); - static readonly bb_exchange_pd_srank = (OPCODES[0xf956] = new Opcode( - 0xf956, - "bb_exchange_pd_srank", - [], - false, - [ - { type: Type.Register }, - { type: Type.Register }, - { type: Type.Register }, - { type: Type.Register }, - { type: Type.Register }, - { type: Type.ILabel }, - { type: Type.ILabel }, - ] - )); - static readonly bb_exchange_pd_special = (OPCODES[0xf957] = new Opcode( - 0xf957, - "bb_exchange_pd_special", - [], - false, - [ - { type: Type.Register }, - { type: Type.Register }, - { type: Type.Register }, - { type: Type.Register }, - { type: Type.Register }, - { type: Type.U32 }, - { type: Type.ILabel }, - { type: Type.ILabel }, - ] - )); - static readonly bb_exchange_pd_percent = (OPCODES[0xf958] = new Opcode( - 0xf958, - "bb_exchange_pd_percent", - [], - false, - [ - { type: Type.Register }, - { type: Type.Register }, - { type: Type.Register }, - { type: Type.Register }, - { type: Type.Register }, - { type: Type.U32 }, - { type: Type.ILabel }, - { type: Type.ILabel }, - ] - )); - static readonly unknown_f959 = (OPCODES[0xf959] = new Opcode( - 0xf959, - "unknown_f959", - [], - false, - [{ type: Type.U32 }] - )); - static readonly unknown_f95a = (OPCODES[0xf95a] = new Opcode( - 0xf95a, - "unknown_f95a", - [], - false, - [] - )); - static readonly unknown_f95b = (OPCODES[0xf95b] = new Opcode( - 0xf95b, - "unknown_f95b", - [], - false, - [] - )); - static readonly bb_exchange_slt = (OPCODES[0xf95c] = new Opcode( - 0xf95c, - "bb_exchange_slt", - [], - false, - [{ type: Type.U32 }, { type: Type.Register }, { type: Type.ILabel }, { type: Type.ILabel }] - )); - static readonly bb_exchange_pc = (OPCODES[0xf95d] = new Opcode( - 0xf95d, - "bb_exchange_pc", - [], - false, - [] - )); - static readonly bb_box_create_bp = (OPCODES[0xf95e] = new Opcode( - 0xf95e, - "bb_box_create_bp", - [], - false, - [{ type: Type.U32 }, { type: Type.F32 }, { type: Type.F32 }] - )); - static readonly bb_exchange_pt = (OPCODES[0xf95f] = new Opcode( - 0xf95f, - "bb_exchange_pt", - [], - false, - [ - { type: Type.Register }, - { type: Type.Register }, - { type: Type.U32 }, - { type: Type.ILabel }, - { type: Type.ILabel }, - ] - )); - static readonly unknown_f960 = (OPCODES[0xf960] = new Opcode( - 0xf960, - "unknown_f960", - [], - false, - [{ type: Type.U32 }] - )); - static readonly unknown_f961 = (OPCODES[0xf961] = new Opcode( - 0xf961, - "unknown_f961", - [], - false, - [] - )); - static readonly unknown_f962 = (OPCODES[0xf962] = new Opcode( - 0xf962, - "unknown_f962", - [], - false, - [] - )); - static readonly unknown_f963 = (OPCODES[0xf963] = new Opcode( - 0xf963, - "unknown_f963", - [], - false, - [] - )); - static readonly unknown_f964 = (OPCODES[0xf964] = new Opcode( - 0xf964, - "unknown_f964", - [], - false, - [] - )); - static readonly unknown_f965 = (OPCODES[0xf965] = new Opcode( - 0xf965, - "unknown_f965", - [], - false, - [] - )); - static readonly unknown_f966 = (OPCODES[0xf966] = new Opcode( - 0xf966, - "unknown_f966", - [], - false, - [] - )); - static readonly unknown_f967 = (OPCODES[0xf967] = new Opcode( - 0xf967, - "unknown_f967", - [], - false, - [] - )); - static readonly unknown_f968 = (OPCODES[0xf968] = new Opcode( - 0xf968, - "unknown_f968", - [], - false, - [] - )); - static readonly unknown_f969 = (OPCODES[0xf969] = new Opcode( - 0xf969, - "unknown_f969", - [], - false, - [] - )); - static readonly unknown_f96a = (OPCODES[0xf96a] = new Opcode( - 0xf96a, - "unknown_f96a", - [], - false, - [] - )); - static readonly unknown_f96b = (OPCODES[0xf96b] = new Opcode( - 0xf96b, - "unknown_f96b", - [], - false, - [] - )); - static readonly unknown_f96c = (OPCODES[0xf96c] = new Opcode( - 0xf96c, - "unknown_f96c", - [], - false, - [] - )); - static readonly unknown_f96d = (OPCODES[0xf96d] = new Opcode( - 0xf96d, - "unknown_f96d", - [], - false, - [] - )); - static readonly unknown_f96e = (OPCODES[0xf96e] = new Opcode( - 0xf96e, - "unknown_f96e", - [], - false, - [] - )); - static readonly unknown_f96f = (OPCODES[0xf96f] = new Opcode( - 0xf96f, - "unknown_f96f", - [], - false, - [] - )); - static readonly unknown_f970 = (OPCODES[0xf970] = new Opcode( - 0xf970, - "unknown_f970", - [], - false, - [] - )); - static readonly unknown_f971 = (OPCODES[0xf971] = new Opcode( - 0xf971, - "unknown_f971", - [], - false, - [] - )); - static readonly unknown_f972 = (OPCODES[0xf972] = new Opcode( - 0xf972, - "unknown_f972", - [], - false, - [] - )); - static readonly unknown_f973 = (OPCODES[0xf973] = new Opcode( - 0xf973, - "unknown_f973", - [], - false, - [] - )); - static readonly unknown_f974 = (OPCODES[0xf974] = new Opcode( - 0xf974, - "unknown_f974", - [], - false, - [] - )); - static readonly unknown_f975 = (OPCODES[0xf975] = new Opcode( - 0xf975, - "unknown_f975", - [], - false, - [] - )); - static readonly unknown_f976 = (OPCODES[0xf976] = new Opcode( - 0xf976, - "unknown_f976", - [], - false, - [] - )); - static readonly unknown_f977 = (OPCODES[0xf977] = new Opcode( - 0xf977, - "unknown_f977", - [], - false, - [] - )); - static readonly unknown_f978 = (OPCODES[0xf978] = new Opcode( - 0xf978, - "unknown_f978", - [], - false, - [] - )); - static readonly unknown_f979 = (OPCODES[0xf979] = new Opcode( - 0xf979, - "unknown_f979", - [], - false, - [] - )); - static readonly unknown_f97a = (OPCODES[0xf97a] = new Opcode( - 0xf97a, - "unknown_f97a", - [], - false, - [] - )); - static readonly unknown_f97b = (OPCODES[0xf97b] = new Opcode( - 0xf97b, - "unknown_f97b", - [], - false, - [] - )); - static readonly unknown_f97c = (OPCODES[0xf97c] = new Opcode( - 0xf97c, - "unknown_f97c", - [], - false, - [] - )); - static readonly unknown_f97d = (OPCODES[0xf97d] = new Opcode( - 0xf97d, - "unknown_f97d", - [], - false, - [] - )); - static readonly unknown_f97e = (OPCODES[0xf97e] = new Opcode( - 0xf97e, - "unknown_f97e", - [], - false, - [] - )); - static readonly unknown_f97f = (OPCODES[0xf97f] = new Opcode( - 0xf97f, - "unknown_f97f", - [], - false, - [] - )); - static readonly unknown_f980 = (OPCODES[0xf980] = new Opcode( - 0xf980, - "unknown_f980", - [], - false, - [] - )); - static readonly unknown_f981 = (OPCODES[0xf981] = new Opcode( - 0xf981, - "unknown_f981", - [], - false, - [] - )); - static readonly unknown_f982 = (OPCODES[0xf982] = new Opcode( - 0xf982, - "unknown_f982", - [], - false, - [] - )); - static readonly unknown_f983 = (OPCODES[0xf983] = new Opcode( - 0xf983, - "unknown_f983", - [], - false, - [] - )); - static readonly unknown_f984 = (OPCODES[0xf984] = new Opcode( - 0xf984, - "unknown_f984", - [], - false, - [] - )); - static readonly unknown_f985 = (OPCODES[0xf985] = new Opcode( - 0xf985, - "unknown_f985", - [], - false, - [] - )); - static readonly unknown_f986 = (OPCODES[0xf986] = new Opcode( - 0xf986, - "unknown_f986", - [], - false, - [] - )); - static readonly unknown_f987 = (OPCODES[0xf987] = new Opcode( - 0xf987, - "unknown_f987", - [], - false, - [] - )); - static readonly unknown_f988 = (OPCODES[0xf988] = new Opcode( - 0xf988, - "unknown_f988", - [], - false, - [] - )); - static readonly unknown_f989 = (OPCODES[0xf989] = new Opcode( - 0xf989, - "unknown_f989", - [], - false, - [] - )); - static readonly unknown_f98a = (OPCODES[0xf98a] = new Opcode( - 0xf98a, - "unknown_f98a", - [], - false, - [] - )); - static readonly unknown_f98b = (OPCODES[0xf98b] = new Opcode( - 0xf98b, - "unknown_f98b", - [], - false, - [] - )); - static readonly unknown_f98c = (OPCODES[0xf98c] = new Opcode( - 0xf98c, - "unknown_f98c", - [], - false, - [] - )); - static readonly unknown_f98d = (OPCODES[0xf98d] = new Opcode( - 0xf98d, - "unknown_f98d", - [], - false, - [] - )); - static readonly unknown_f98e = (OPCODES[0xf98e] = new Opcode( - 0xf98e, - "unknown_f98e", - [], - false, - [] - )); - static readonly unknown_f98f = (OPCODES[0xf98f] = new Opcode( - 0xf98f, - "unknown_f98f", - [], - false, - [] - )); - static readonly unknown_f990 = (OPCODES[0xf990] = new Opcode( - 0xf990, - "unknown_f990", - [], - false, - [] - )); - static readonly unknown_f991 = (OPCODES[0xf991] = new Opcode( - 0xf991, - "unknown_f991", - [], - false, - [] - )); - static readonly unknown_f992 = (OPCODES[0xf992] = new Opcode( - 0xf992, - "unknown_f992", - [], - false, - [] - )); - static readonly unknown_f993 = (OPCODES[0xf993] = new Opcode( - 0xf993, - "unknown_f993", - [], - false, - [] - )); - static readonly unknown_f994 = (OPCODES[0xf994] = new Opcode( - 0xf994, - "unknown_f994", - [], - false, - [] - )); - static readonly unknown_f995 = (OPCODES[0xf995] = new Opcode( - 0xf995, - "unknown_f995", - [], - false, - [] - )); - static readonly unknown_f996 = (OPCODES[0xf996] = new Opcode( - 0xf996, - "unknown_f996", - [], - false, - [] - )); - static readonly unknown_f997 = (OPCODES[0xf997] = new Opcode( - 0xf997, - "unknown_f997", - [], - false, - [] - )); - static readonly unknown_f998 = (OPCODES[0xf998] = new Opcode( - 0xf998, - "unknown_f998", - [], - false, - [] - )); - static readonly unknown_f999 = (OPCODES[0xf999] = new Opcode( - 0xf999, - "unknown_f999", - [], - false, - [] - )); - static readonly unknown_f99a = (OPCODES[0xf99a] = new Opcode( - 0xf99a, - "unknown_f99a", - [], - false, - [] - )); - static readonly unknown_f99b = (OPCODES[0xf99b] = new Opcode( - 0xf99b, - "unknown_f99b", - [], - false, - [] - )); - static readonly unknown_f99c = (OPCODES[0xf99c] = new Opcode( - 0xf99c, - "unknown_f99c", - [], - false, - [] - )); - static readonly unknown_f99d = (OPCODES[0xf99d] = new Opcode( - 0xf99d, - "unknown_f99d", - [], - false, - [] - )); - static readonly unknown_f99e = (OPCODES[0xf99e] = new Opcode( - 0xf99e, - "unknown_f99e", - [], - false, - [] - )); - static readonly unknown_f99f = (OPCODES[0xf99f] = new Opcode( - 0xf99f, - "unknown_f99f", - [], - false, - [] - )); - static readonly unknown_f9a0 = (OPCODES[0xf9a0] = new Opcode( - 0xf9a0, - "unknown_f9a0", - [], - false, - [] - )); - static readonly unknown_f9a1 = (OPCODES[0xf9a1] = new Opcode( - 0xf9a1, - "unknown_f9a1", - [], - false, - [] - )); - static readonly unknown_f9a2 = (OPCODES[0xf9a2] = new Opcode( - 0xf9a2, - "unknown_f9a2", - [], - false, - [] - )); - static readonly unknown_f9a3 = (OPCODES[0xf9a3] = new Opcode( - 0xf9a3, - "unknown_f9a3", - [], - false, - [] - )); - static readonly unknown_f9a4 = (OPCODES[0xf9a4] = new Opcode( - 0xf9a4, - "unknown_f9a4", - [], - false, - [] - )); - static readonly unknown_f9a5 = (OPCODES[0xf9a5] = new Opcode( - 0xf9a5, - "unknown_f9a5", - [], - false, - [] - )); - static readonly unknown_f9a6 = (OPCODES[0xf9a6] = new Opcode( - 0xf9a6, - "unknown_f9a6", - [], - false, - [] - )); - static readonly unknown_f9a7 = (OPCODES[0xf9a7] = new Opcode( - 0xf9a7, - "unknown_f9a7", - [], - false, - [] - )); - static readonly unknown_f9a8 = (OPCODES[0xf9a8] = new Opcode( - 0xf9a8, - "unknown_f9a8", - [], - false, - [] - )); - static readonly unknown_f9a9 = (OPCODES[0xf9a9] = new Opcode( - 0xf9a9, - "unknown_f9a9", - [], - false, - [] - )); - static readonly unknown_f9aa = (OPCODES[0xf9aa] = new Opcode( - 0xf9aa, - "unknown_f9aa", - [], - false, - [] - )); - static readonly unknown_f9ab = (OPCODES[0xf9ab] = new Opcode( - 0xf9ab, - "unknown_f9ab", - [], - false, - [] - )); - static readonly unknown_f9ac = (OPCODES[0xf9ac] = new Opcode( - 0xf9ac, - "unknown_f9ac", - [], - false, - [] - )); - static readonly unknown_f9ad = (OPCODES[0xf9ad] = new Opcode( - 0xf9ad, - "unknown_f9ad", - [], - false, - [] - )); - static readonly unknown_f9ae = (OPCODES[0xf9ae] = new Opcode( - 0xf9ae, - "unknown_f9ae", - [], - false, - [] - )); - static readonly unknown_f9af = (OPCODES[0xf9af] = new Opcode( - 0xf9af, - "unknown_f9af", - [], - false, - [] - )); - static readonly unknown_f9b0 = (OPCODES[0xf9b0] = new Opcode( - 0xf9b0, - "unknown_f9b0", - [], - false, - [] - )); - static readonly unknown_f9b1 = (OPCODES[0xf9b1] = new Opcode( - 0xf9b1, - "unknown_f9b1", - [], - false, - [] - )); - static readonly unknown_f9b2 = (OPCODES[0xf9b2] = new Opcode( - 0xf9b2, - "unknown_f9b2", - [], - false, - [] - )); - static readonly unknown_f9b3 = (OPCODES[0xf9b3] = new Opcode( - 0xf9b3, - "unknown_f9b3", - [], - false, - [] - )); - static readonly unknown_f9b4 = (OPCODES[0xf9b4] = new Opcode( - 0xf9b4, - "unknown_f9b4", - [], - false, - [] - )); - static readonly unknown_f9b5 = (OPCODES[0xf9b5] = new Opcode( - 0xf9b5, - "unknown_f9b5", - [], - false, - [] - )); - static readonly unknown_f9b6 = (OPCODES[0xf9b6] = new Opcode( - 0xf9b6, - "unknown_f9b6", - [], - false, - [] - )); - static readonly unknown_f9b7 = (OPCODES[0xf9b7] = new Opcode( - 0xf9b7, - "unknown_f9b7", - [], - false, - [] - )); - static readonly unknown_f9b8 = (OPCODES[0xf9b8] = new Opcode( - 0xf9b8, - "unknown_f9b8", - [], - false, - [] - )); - static readonly unknown_f9b9 = (OPCODES[0xf9b9] = new Opcode( - 0xf9b9, - "unknown_f9b9", - [], - false, - [] - )); - static readonly unknown_f9ba = (OPCODES[0xf9ba] = new Opcode( - 0xf9ba, - "unknown_f9ba", - [], - false, - [] - )); - static readonly unknown_f9bb = (OPCODES[0xf9bb] = new Opcode( - 0xf9bb, - "unknown_f9bb", - [], - false, - [] - )); - static readonly unknown_f9bc = (OPCODES[0xf9bc] = new Opcode( - 0xf9bc, - "unknown_f9bc", - [], - false, - [] - )); - static readonly unknown_f9bd = (OPCODES[0xf9bd] = new Opcode( - 0xf9bd, - "unknown_f9bd", - [], - false, - [] - )); - static readonly unknown_f9be = (OPCODES[0xf9be] = new Opcode( - 0xf9be, - "unknown_f9be", - [], - false, - [] - )); - static readonly unknown_f9bf = (OPCODES[0xf9bf] = new Opcode( - 0xf9bf, - "unknown_f9bf", - [], - false, - [] - )); - static readonly unknown_f9c0 = (OPCODES[0xf9c0] = new Opcode( - 0xf9c0, - "unknown_f9c0", - [], - false, - [] - )); - static readonly unknown_f9c1 = (OPCODES[0xf9c1] = new Opcode( - 0xf9c1, - "unknown_f9c1", - [], - false, - [] - )); - static readonly unknown_f9c2 = (OPCODES[0xf9c2] = new Opcode( - 0xf9c2, - "unknown_f9c2", - [], - false, - [] - )); - static readonly unknown_f9c3 = (OPCODES[0xf9c3] = new Opcode( - 0xf9c3, - "unknown_f9c3", - [], - false, - [] - )); - static readonly unknown_f9c4 = (OPCODES[0xf9c4] = new Opcode( - 0xf9c4, - "unknown_f9c4", - [], - false, - [] - )); - static readonly unknown_f9c5 = (OPCODES[0xf9c5] = new Opcode( - 0xf9c5, - "unknown_f9c5", - [], - false, - [] - )); - static readonly unknown_f9c6 = (OPCODES[0xf9c6] = new Opcode( - 0xf9c6, - "unknown_f9c6", - [], - false, - [] - )); - static readonly unknown_f9c7 = (OPCODES[0xf9c7] = new Opcode( - 0xf9c7, - "unknown_f9c7", - [], - false, - [] - )); - static readonly unknown_f9c8 = (OPCODES[0xf9c8] = new Opcode( - 0xf9c8, - "unknown_f9c8", - [], - false, - [] - )); - static readonly unknown_f9c9 = (OPCODES[0xf9c9] = new Opcode( - 0xf9c9, - "unknown_f9c9", - [], - false, - [] - )); - static readonly unknown_f9ca = (OPCODES[0xf9ca] = new Opcode( - 0xf9ca, - "unknown_f9ca", - [], - false, - [] - )); - static readonly unknown_f9cb = (OPCODES[0xf9cb] = new Opcode( - 0xf9cb, - "unknown_f9cb", - [], - false, - [] - )); - static readonly unknown_f9cc = (OPCODES[0xf9cc] = new Opcode( - 0xf9cc, - "unknown_f9cc", - [], - false, - [] - )); - static readonly unknown_f9cd = (OPCODES[0xf9cd] = new Opcode( - 0xf9cd, - "unknown_f9cd", - [], - false, - [] - )); - static readonly unknown_f9ce = (OPCODES[0xf9ce] = new Opcode( - 0xf9ce, - "unknown_f9ce", - [], - false, - [] - )); - static readonly unknown_f9cf = (OPCODES[0xf9cf] = new Opcode( - 0xf9cf, - "unknown_f9cf", - [], - false, - [] - )); - static readonly unknown_f9d0 = (OPCODES[0xf9d0] = new Opcode( - 0xf9d0, - "unknown_f9d0", - [], - false, - [] - )); - static readonly unknown_f9d1 = (OPCODES[0xf9d1] = new Opcode( - 0xf9d1, - "unknown_f9d1", - [], - false, - [] - )); - static readonly unknown_f9d2 = (OPCODES[0xf9d2] = new Opcode( - 0xf9d2, - "unknown_f9d2", - [], - false, - [] - )); - static readonly unknown_f9d3 = (OPCODES[0xf9d3] = new Opcode( - 0xf9d3, - "unknown_f9d3", - [], - false, - [] - )); - static readonly unknown_f9d4 = (OPCODES[0xf9d4] = new Opcode( - 0xf9d4, - "unknown_f9d4", - [], - false, - [] - )); - static readonly unknown_f9d5 = (OPCODES[0xf9d5] = new Opcode( - 0xf9d5, - "unknown_f9d5", - [], - false, - [] - )); - static readonly unknown_f9d6 = (OPCODES[0xf9d6] = new Opcode( - 0xf9d6, - "unknown_f9d6", - [], - false, - [] - )); - static readonly unknown_f9d7 = (OPCODES[0xf9d7] = new Opcode( - 0xf9d7, - "unknown_f9d7", - [], - false, - [] - )); - static readonly unknown_f9d8 = (OPCODES[0xf9d8] = new Opcode( - 0xf9d8, - "unknown_f9d8", - [], - false, - [] - )); - static readonly unknown_f9d9 = (OPCODES[0xf9d9] = new Opcode( - 0xf9d9, - "unknown_f9d9", - [], - false, - [] - )); - static readonly unknown_f9da = (OPCODES[0xf9da] = new Opcode( - 0xf9da, - "unknown_f9da", - [], - false, - [] - )); - static readonly unknown_f9db = (OPCODES[0xf9db] = new Opcode( - 0xf9db, - "unknown_f9db", - [], - false, - [] - )); - static readonly unknown_f9dc = (OPCODES[0xf9dc] = new Opcode( - 0xf9dc, - "unknown_f9dc", - [], - false, - [] - )); - static readonly unknown_f9dd = (OPCODES[0xf9dd] = new Opcode( - 0xf9dd, - "unknown_f9dd", - [], - false, - [] - )); - static readonly unknown_f9de = (OPCODES[0xf9de] = new Opcode( - 0xf9de, - "unknown_f9de", - [], - false, - [] - )); - static readonly unknown_f9df = (OPCODES[0xf9df] = new Opcode( - 0xf9df, - "unknown_f9df", - [], - false, - [] - )); - static readonly unknown_f9e0 = (OPCODES[0xf9e0] = new Opcode( - 0xf9e0, - "unknown_f9e0", - [], - false, - [] - )); - static readonly unknown_f9e1 = (OPCODES[0xf9e1] = new Opcode( - 0xf9e1, - "unknown_f9e1", - [], - false, - [] - )); - static readonly unknown_f9e2 = (OPCODES[0xf9e2] = new Opcode( - 0xf9e2, - "unknown_f9e2", - [], - false, - [] - )); - static readonly unknown_f9e3 = (OPCODES[0xf9e3] = new Opcode( - 0xf9e3, - "unknown_f9e3", - [], - false, - [] - )); - static readonly unknown_f9e4 = (OPCODES[0xf9e4] = new Opcode( - 0xf9e4, - "unknown_f9e4", - [], - false, - [] - )); - static readonly unknown_f9e5 = (OPCODES[0xf9e5] = new Opcode( - 0xf9e5, - "unknown_f9e5", - [], - false, - [] - )); - static readonly unknown_f9e6 = (OPCODES[0xf9e6] = new Opcode( - 0xf9e6, - "unknown_f9e6", - [], - false, - [] - )); - static readonly unknown_f9e7 = (OPCODES[0xf9e7] = new Opcode( - 0xf9e7, - "unknown_f9e7", - [], - false, - [] - )); - static readonly unknown_f9e8 = (OPCODES[0xf9e8] = new Opcode( - 0xf9e8, - "unknown_f9e8", - [], - false, - [] - )); - static readonly unknown_f9e9 = (OPCODES[0xf9e9] = new Opcode( - 0xf9e9, - "unknown_f9e9", - [], - false, - [] - )); - static readonly unknown_f9ea = (OPCODES[0xf9ea] = new Opcode( - 0xf9ea, - "unknown_f9ea", - [], - false, - [] - )); - static readonly unknown_f9eb = (OPCODES[0xf9eb] = new Opcode( - 0xf9eb, - "unknown_f9eb", - [], - false, - [] - )); - static readonly unknown_f9ec = (OPCODES[0xf9ec] = new Opcode( - 0xf9ec, - "unknown_f9ec", - [], - false, - [] - )); - static readonly unknown_f9ed = (OPCODES[0xf9ed] = new Opcode( - 0xf9ed, - "unknown_f9ed", - [], - false, - [] - )); - static readonly unknown_f9ee = (OPCODES[0xf9ee] = new Opcode( - 0xf9ee, - "unknown_f9ee", - [], - false, - [] - )); - static readonly unknown_f9ef = (OPCODES[0xf9ef] = new Opcode( - 0xf9ef, - "unknown_f9ef", - [], - false, - [] - )); - static readonly unknown_f9f0 = (OPCODES[0xf9f0] = new Opcode( - 0xf9f0, - "unknown_f9f0", - [], - false, - [] - )); - static readonly unknown_f9f1 = (OPCODES[0xf9f1] = new Opcode( - 0xf9f1, - "unknown_f9f1", - [], - false, - [] - )); - static readonly unknown_f9f2 = (OPCODES[0xf9f2] = new Opcode( - 0xf9f2, - "unknown_f9f2", - [], - false, - [] - )); - static readonly unknown_f9f3 = (OPCODES[0xf9f3] = new Opcode( - 0xf9f3, - "unknown_f9f3", - [], - false, - [] - )); - static readonly unknown_f9f4 = (OPCODES[0xf9f4] = new Opcode( - 0xf9f4, - "unknown_f9f4", - [], - false, - [] - )); - static readonly unknown_f9f5 = (OPCODES[0xf9f5] = new Opcode( - 0xf9f5, - "unknown_f9f5", - [], - false, - [] - )); - static readonly unknown_f9f6 = (OPCODES[0xf9f6] = new Opcode( - 0xf9f6, - "unknown_f9f6", - [], - false, - [] - )); - static readonly unknown_f9f7 = (OPCODES[0xf9f7] = new Opcode( - 0xf9f7, - "unknown_f9f7", - [], - false, - [] - )); - static readonly unknown_f9f8 = (OPCODES[0xf9f8] = new Opcode( - 0xf9f8, - "unknown_f9f8", - [], - false, - [] - )); - static readonly unknown_f9f9 = (OPCODES[0xf9f9] = new Opcode( - 0xf9f9, - "unknown_f9f9", - [], - false, - [] - )); - static readonly unknown_f9fa = (OPCODES[0xf9fa] = new Opcode( - 0xf9fa, - "unknown_f9fa", - [], - false, - [] - )); - static readonly unknown_f9fb = (OPCODES[0xf9fb] = new Opcode( - 0xf9fb, - "unknown_f9fb", - [], - false, - [] - )); - static readonly unknown_f9fc = (OPCODES[0xf9fc] = new Opcode( - 0xf9fc, - "unknown_f9fc", - [], - false, - [] - )); - static readonly unknown_f9fd = (OPCODES[0xf9fd] = new Opcode( - 0xf9fd, - "unknown_f9fd", - [], - false, - [] - )); - static readonly unknown_f9fe = (OPCODES[0xf9fe] = new Opcode( - 0xf9fe, - "unknown_f9fe", - [], - false, - [] - )); - static readonly unknown_f9ff = (OPCODES[0xf9ff] = new Opcode( - 0xf9ff, - "unknown_f9ff", - [], - false, - [] - )); + static readonly npc_action_string = (OPCODES[0xf8dc] = new Opcode({ + code: 0xf8dc, + mnemonic: "npc_action_string", + params: [{ type: Type.RegRef }, { type: Type.RegRef }, { type: TYPE_D_LABEL }], + push_stack: false, + stack_params: [], + })); + static readonly get_pad_cond = (OPCODES[0xf8dd] = new Opcode({ + code: 0xf8dd, + mnemonic: "get_pad_cond", + params: [{ type: Type.RegRef }, { type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly get_button_cond = (OPCODES[0xf8de] = new Opcode({ + code: 0xf8de, + mnemonic: "get_button_cond", + params: [{ type: Type.RegRef }, { type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly freeze_enemies = (OPCODES[0xf8df] = new Opcode({ + code: 0xf8df, + mnemonic: "freeze_enemies", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unfreeze_enemies = (OPCODES[0xf8e0] = new Opcode({ + code: 0xf8e0, + mnemonic: "unfreeze_enemies", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly freeze_everything = (OPCODES[0xf8e1] = new Opcode({ + code: 0xf8e1, + mnemonic: "freeze_everything", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unfreeze_everything = (OPCODES[0xf8e2] = new Opcode({ + code: 0xf8e2, + mnemonic: "unfreeze_everything", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly restore_hp = (OPCODES[0xf8e3] = new Opcode({ + code: 0xf8e3, + mnemonic: "restore_hp", + params: [{ type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly restore_tp = (OPCODES[0xf8e4] = new Opcode({ + code: 0xf8e4, + mnemonic: "restore_tp", + params: [{ type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly close_chat_bubble = (OPCODES[0xf8e5] = new Opcode({ + code: 0xf8e5, + mnemonic: "close_chat_bubble", + params: [{ type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly move_coords_object = (OPCODES[0xf8e6] = new Opcode({ + code: 0xf8e6, + mnemonic: "move_coords_object ", + params: [{ type: Type.RegRef }, { type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly at_coords_call_ex = (OPCODES[0xf8e7] = new Opcode({ + code: 0xf8e7, + mnemonic: "at_coords_call_ex", + params: [{ type: Type.RegRef }, { type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f8e8 = (OPCODES[0xf8e8] = new Opcode({ + code: 0xf8e8, + mnemonic: "unknown_f8e8", + params: [{ type: Type.RegRef }, { type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f8e9 = (OPCODES[0xf8e9] = new Opcode({ + code: 0xf8e9, + mnemonic: "unknown_f8e9", + params: [{ type: Type.RegRef }, { type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f8ea = (OPCODES[0xf8ea] = new Opcode({ + code: 0xf8ea, + mnemonic: "unknown_f8ea", + params: [{ type: Type.RegRef }, { type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f8eb = (OPCODES[0xf8eb] = new Opcode({ + code: 0xf8eb, + mnemonic: "unknown_f8eb", + params: [{ type: Type.RegRef }, { type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f8ec = (OPCODES[0xf8ec] = new Opcode({ + code: 0xf8ec, + mnemonic: "unknown_f8ec", + params: [{ type: Type.RegRef }, { type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly animation_check = (OPCODES[0xf8ed] = new Opcode({ + code: 0xf8ed, + mnemonic: "animation_check", + params: [{ type: Type.RegRef }, { type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly call_image_data = (OPCODES[0xf8ee] = new Opcode({ + code: 0xf8ee, + mnemonic: "call_image_data", + params: [], + push_stack: false, + stack_params: [{ type: TYPE_U32 }, { type: TYPE_U16 }], + })); + static readonly unknown_f8ef = (OPCODES[0xf8ef] = new Opcode({ + code: 0xf8ef, + mnemonic: "unknown_f8ef", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly turn_off_bgm_p2 = (OPCODES[0xf8f0] = new Opcode({ + code: 0xf8f0, + mnemonic: "turn_off_bgm_p2", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly turn_on_bgm_p2 = (OPCODES[0xf8f1] = new Opcode({ + code: 0xf8f1, + mnemonic: "turn_on_bgm_p2", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly load_unk_data = (OPCODES[0xf8f2] = new Opcode({ + code: 0xf8f2, + mnemonic: "load_unk_data", + params: [], + push_stack: false, + stack_params: [ + { type: TYPE_U32 }, + { type: TYPE_U32 }, + { type: TYPE_U32 }, + { type: TYPE_U32 }, + { type: Type.RegRef }, + { type: TYPE_D_LABEL }, + ], + })); + static readonly particle2 = (OPCODES[0xf8f3] = new Opcode({ + code: 0xf8f3, + mnemonic: "particle2", + params: [], + push_stack: false, + stack_params: [{ type: Type.RegRef }, { type: TYPE_U32 }, { type: TYPE_F32 }], + })); + static readonly unknown_f8f4 = (OPCODES[0xf8f4] = new Opcode({ + code: 0xf8f4, + mnemonic: "unknown_f8f4", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f8f5 = (OPCODES[0xf8f5] = new Opcode({ + code: 0xf8f5, + mnemonic: "unknown_f8f5", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f8f6 = (OPCODES[0xf8f6] = new Opcode({ + code: 0xf8f6, + mnemonic: "unknown_f8f6", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f8f7 = (OPCODES[0xf8f7] = new Opcode({ + code: 0xf8f7, + mnemonic: "unknown_f8f7", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f8f8 = (OPCODES[0xf8f8] = new Opcode({ + code: 0xf8f8, + mnemonic: "unknown_f8f8", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f8f9 = (OPCODES[0xf8f9] = new Opcode({ + code: 0xf8f9, + mnemonic: "unknown_f8f9", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f8fa = (OPCODES[0xf8fa] = new Opcode({ + code: 0xf8fa, + mnemonic: "unknown_f8fa", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f8fb = (OPCODES[0xf8fb] = new Opcode({ + code: 0xf8fb, + mnemonic: "unknown_f8fb", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f8fc = (OPCODES[0xf8fc] = new Opcode({ + code: 0xf8fc, + mnemonic: "unknown_f8fc", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f8fd = (OPCODES[0xf8fd] = new Opcode({ + code: 0xf8fd, + mnemonic: "unknown_f8fd", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f8fe = (OPCODES[0xf8fe] = new Opcode({ + code: 0xf8fe, + mnemonic: "unknown_f8fe", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f8ff = (OPCODES[0xf8ff] = new Opcode({ + code: 0xf8ff, + mnemonic: "unknown_f8ff", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f900 = (OPCODES[0xf900] = new Opcode({ + code: 0xf900, + mnemonic: "unknown_f900", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly dec2float = (OPCODES[0xf901] = new Opcode({ + code: 0xf901, + mnemonic: "dec2float", + params: [{ type: Type.RegRef }, { type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly float2dec = (OPCODES[0xf902] = new Opcode({ + code: 0xf902, + mnemonic: "float2dec", + params: [{ type: Type.RegRef }, { type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly flet = (OPCODES[0xf903] = new Opcode({ + code: 0xf903, + mnemonic: "flet", + params: [{ type: Type.RegRef }, { type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly fleti = (OPCODES[0xf904] = new Opcode({ + code: 0xf904, + mnemonic: "fleti", + params: [{ type: Type.RegRef }, { type: TYPE_F32 }], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f905 = (OPCODES[0xf905] = new Opcode({ + code: 0xf905, + mnemonic: "unknown_f905", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f906 = (OPCODES[0xf906] = new Opcode({ + code: 0xf906, + mnemonic: "unknown_f906", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f907 = (OPCODES[0xf907] = new Opcode({ + code: 0xf907, + mnemonic: "unknown_f907", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly fadd = (OPCODES[0xf908] = new Opcode({ + code: 0xf908, + mnemonic: "fadd", + params: [{ type: Type.RegRef }, { type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly faddi = (OPCODES[0xf909] = new Opcode({ + code: 0xf909, + mnemonic: "faddi", + params: [{ type: Type.RegRef }, { type: TYPE_F32 }], + push_stack: false, + stack_params: [], + })); + static readonly fsub = (OPCODES[0xf90a] = new Opcode({ + code: 0xf90a, + mnemonic: "fsub", + params: [{ type: Type.RegRef }, { type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly fsubi = (OPCODES[0xf90b] = new Opcode({ + code: 0xf90b, + mnemonic: "fsubi", + params: [{ type: Type.RegRef }, { type: TYPE_F32 }], + push_stack: false, + stack_params: [], + })); + static readonly fmul = (OPCODES[0xf90c] = new Opcode({ + code: 0xf90c, + mnemonic: "fmul", + params: [{ type: Type.RegRef }, { type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly fmuli = (OPCODES[0xf90d] = new Opcode({ + code: 0xf90d, + mnemonic: "fmuli", + params: [{ type: Type.RegRef }, { type: TYPE_F32 }], + push_stack: false, + stack_params: [], + })); + static readonly fdiv = (OPCODES[0xf90e] = new Opcode({ + code: 0xf90e, + mnemonic: "fdiv", + params: [{ type: Type.RegRef }, { type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly fdivi = (OPCODES[0xf90f] = new Opcode({ + code: 0xf90f, + mnemonic: "fdivi", + params: [{ type: Type.RegRef }, { type: TYPE_F32 }], + push_stack: false, + stack_params: [], + })); + static readonly get_unknown_count = (OPCODES[0xf910] = new Opcode({ + code: 0xf910, + mnemonic: "get_unknown_count", + params: [], + push_stack: false, + stack_params: [{ type: TYPE_U32 }, { type: Type.RegRef }], + })); + static readonly get_stackable_item_count = (OPCODES[0xf911] = new Opcode({ + code: 0xf911, + mnemonic: "get_stackable_item_count", + params: [{ type: Type.RegRef }, { type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly freeze_and_hide_equip = (OPCODES[0xf912] = new Opcode({ + code: 0xf912, + mnemonic: "freeze_and_hide_equip", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly thaw_and_show_equip = (OPCODES[0xf913] = new Opcode({ + code: 0xf913, + mnemonic: "thaw_and_show_equip", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly set_palettex_callback = (OPCODES[0xf914] = new Opcode({ + code: 0xf914, + mnemonic: "set_palettex_callback", + params: [], + push_stack: false, + stack_params: [{ type: Type.RegRef }, { type: TYPE_I_LABEL }], + })); + static readonly activate_palettex = (OPCODES[0xf915] = new Opcode({ + code: 0xf915, + mnemonic: "activate_palettex", + params: [], + push_stack: false, + stack_params: [{ type: Type.RegRef }], + })); + static readonly enable_palettex = (OPCODES[0xf916] = new Opcode({ + code: 0xf916, + mnemonic: "enable_palettex", + params: [], + push_stack: false, + stack_params: [{ type: Type.RegRef }], + })); + static readonly restore_palettex = (OPCODES[0xf917] = new Opcode({ + code: 0xf917, + mnemonic: "restore_palettex", + params: [], + push_stack: false, + stack_params: [{ type: TYPE_U32 }], + })); + static readonly disable_palettex = (OPCODES[0xf918] = new Opcode({ + code: 0xf918, + mnemonic: "disable_palettex", + params: [], + push_stack: false, + stack_params: [{ type: TYPE_U32 }], + })); + static readonly get_palettex_activated = (OPCODES[0xf919] = new Opcode({ + code: 0xf919, + mnemonic: "get_palettex_activated", + params: [], + push_stack: false, + stack_params: [{ type: TYPE_U32 }, { type: Type.RegRef }], + })); + static readonly get_unknown_palettex_status = (OPCODES[0xf91a] = new Opcode({ + code: 0xf91a, + mnemonic: "get_unknown_palettex_status", + params: [], + push_stack: false, + stack_params: [{ type: TYPE_U32 }, { type: Type.RegRef }], + })); + static readonly disable_movement2 = (OPCODES[0xf91b] = new Opcode({ + code: 0xf91b, + mnemonic: "disable_movement2", + params: [], + push_stack: false, + stack_params: [{ type: Type.RegRef }], + })); + static readonly enable_movement2 = (OPCODES[0xf91c] = new Opcode({ + code: 0xf91c, + mnemonic: "enable_movement2", + params: [], + push_stack: false, + stack_params: [{ type: Type.RegRef }], + })); + static readonly get_time_played = (OPCODES[0xf91d] = new Opcode({ + code: 0xf91d, + mnemonic: "get_time_played", + params: [{ type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly get_guildcard_total = (OPCODES[0xf91e] = new Opcode({ + code: 0xf91e, + mnemonic: "get_guildcard_total", + params: [{ type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly get_slot_meseta = (OPCODES[0xf91f] = new Opcode({ + code: 0xf91f, + mnemonic: "get_slot_meseta", + params: [{ type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly get_player_level = (OPCODES[0xf920] = new Opcode({ + code: 0xf920, + mnemonic: "get_player_level", + params: [], + push_stack: false, + stack_params: [{ type: TYPE_U32 }, { type: Type.RegRef }], + })); + static readonly get_section_id = (OPCODES[0xf921] = new Opcode({ + code: 0xf921, + mnemonic: "get_section_id", + params: [], + push_stack: false, + stack_params: [{ type: TYPE_U32 }, { type: Type.RegRef }], + })); + static readonly get_player_hp = (OPCODES[0xf922] = new Opcode({ + code: 0xf922, + mnemonic: "get_player_hp", + params: [], + push_stack: false, + stack_params: [{ type: Type.RegRef }, { type: Type.RegRef }], + })); + static readonly get_floor_number = (OPCODES[0xf923] = new Opcode({ + code: 0xf923, + mnemonic: "get_floor_number", + params: [], + push_stack: false, + stack_params: [{ type: Type.RegRef }, { type: Type.RegRef }], + })); + static readonly get_coord_player_detect = (OPCODES[0xf924] = new Opcode({ + code: 0xf924, + mnemonic: "get_coord_player_detect", + params: [{ type: Type.RegRef }, { type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly read_global_flag = (OPCODES[0xf925] = new Opcode({ + code: 0xf925, + mnemonic: "read_global_flag", + params: [], + push_stack: false, + stack_params: [{ type: TYPE_U8 }, { type: Type.RegRef }], + })); + static readonly write_global_flag = (OPCODES[0xf926] = new Opcode({ + code: 0xf926, + mnemonic: "write_global_flag", + params: [], + push_stack: false, + stack_params: [{ type: TYPE_U8 }, { type: Type.RegRef }], + })); + static readonly unknown_f927 = (OPCODES[0xf927] = new Opcode({ + code: 0xf927, + mnemonic: "unknown_f927", + params: [{ type: Type.RegRef }, { type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly floor_player_detect = (OPCODES[0xf928] = new Opcode({ + code: 0xf928, + mnemonic: "floor_player_detect", + params: [{ type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly read_disk_file = (OPCODES[0xf929] = new Opcode({ + code: 0xf929, + mnemonic: "read_disk_file", + params: [], + push_stack: false, + stack_params: [{ type: TYPE_STRING }], + })); + static readonly open_pack_select = (OPCODES[0xf92a] = new Opcode({ + code: 0xf92a, + mnemonic: "open_pack_select", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly item_select = (OPCODES[0xf92b] = new Opcode({ + code: 0xf92b, + mnemonic: "item_select", + params: [{ type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly get_item_id = (OPCODES[0xf92c] = new Opcode({ + code: 0xf92c, + mnemonic: "get_item_id", + params: [{ type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly color_change = (OPCODES[0xf92d] = new Opcode({ + code: 0xf92d, + mnemonic: "color_change", + params: [], + push_stack: false, + stack_params: [ + { type: Type.RegRef }, + { type: Type.RegRef }, + { type: Type.RegRef }, + { type: Type.RegRef }, + { type: Type.RegRef }, + ], + })); + static readonly send_statistic = (OPCODES[0xf92e] = new Opcode({ + code: 0xf92e, + mnemonic: "send_statistic", + params: [], + push_stack: false, + stack_params: [ + { type: TYPE_U32 }, + { type: TYPE_U32 }, + { type: TYPE_U32 }, + { type: TYPE_U32 }, + { type: TYPE_U32 }, + { type: TYPE_U32 }, + { type: TYPE_U32 }, + { type: TYPE_U32 }, + ], + })); + static readonly unknown_f92f = (OPCODES[0xf92f] = new Opcode({ + code: 0xf92f, + mnemonic: "unknown_f92f", + params: [], + push_stack: false, + stack_params: [{ type: TYPE_U32 }, { type: TYPE_U32 }], + })); + static readonly chat_box = (OPCODES[0xf930] = new Opcode({ + code: 0xf930, + mnemonic: "chat_box", + params: [], + push_stack: false, + stack_params: [ + { type: TYPE_U32 }, + { type: TYPE_U32 }, + { type: TYPE_U32 }, + { type: TYPE_U32 }, + { type: TYPE_U32 }, + { type: TYPE_STRING }, + ], + })); + static readonly chat_bubble = (OPCODES[0xf931] = new Opcode({ + code: 0xf931, + mnemonic: "chat_bubble", + params: [], + push_stack: false, + stack_params: [{ type: TYPE_U32 }, { type: TYPE_STRING }], + })); + static readonly unknown_f932 = (OPCODES[0xf932] = new Opcode({ + code: 0xf932, + mnemonic: "unknown_f932", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f933 = (OPCODES[0xf933] = new Opcode({ + code: 0xf933, + mnemonic: "unknown_f933", + params: [{ type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly scroll_text = (OPCODES[0xf934] = new Opcode({ + code: 0xf934, + mnemonic: "scroll_text", + params: [], + push_stack: false, + stack_params: [ + { type: TYPE_U32 }, + { type: TYPE_U32 }, + { type: TYPE_U32 }, + { type: TYPE_U32 }, + { type: TYPE_U32 }, + { type: TYPE_F32 }, + { type: Type.RegRef }, + { type: TYPE_STRING }, + ], + })); + static readonly gba_unknown1 = (OPCODES[0xf935] = new Opcode({ + code: 0xf935, + mnemonic: "gba_unknown1", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly gba_unknown2 = (OPCODES[0xf936] = new Opcode({ + code: 0xf936, + mnemonic: "gba_unknown2", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly gba_unknown3 = (OPCODES[0xf937] = new Opcode({ + code: 0xf937, + mnemonic: "gba_unknown3", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly add_damage_to = (OPCODES[0xf938] = new Opcode({ + code: 0xf938, + mnemonic: "add_damage_to", + params: [], + push_stack: false, + stack_params: [{ type: TYPE_U32 }, { type: TYPE_U32 }], + })); + static readonly item_delete3 = (OPCODES[0xf939] = new Opcode({ + code: 0xf939, + mnemonic: "item_delete3", + params: [], + push_stack: false, + stack_params: [{ type: TYPE_U32 }], + })); + static readonly get_item_info = (OPCODES[0xf93a] = new Opcode({ + code: 0xf93a, + mnemonic: "get_item_info", + params: [], + push_stack: false, + stack_params: [{ type: TYPE_U32 }, { type: Type.RegRef }], + })); + static readonly item_packing1 = (OPCODES[0xf93b] = new Opcode({ + code: 0xf93b, + mnemonic: "item_packing1", + params: [], + push_stack: false, + stack_params: [{ type: TYPE_U32 }], + })); + static readonly item_packing2 = (OPCODES[0xf93c] = new Opcode({ + code: 0xf93c, + mnemonic: "item_packing2", + params: [], + push_stack: false, + stack_params: [{ type: TYPE_U32 }, { type: TYPE_U32 }], + })); + static readonly get_lang_setting = (OPCODES[0xf93d] = new Opcode({ + code: 0xf93d, + mnemonic: "get_lang_setting", + params: [], + push_stack: false, + stack_params: [{ type: Type.RegRef }], + })); + static readonly prepare_statistic = (OPCODES[0xf93e] = new Opcode({ + code: 0xf93e, + mnemonic: "prepare_statistic", + params: [], + push_stack: false, + stack_params: [{ type: TYPE_U32 }, { type: TYPE_I_LABEL }, { type: TYPE_I_LABEL }], + })); + static readonly keyword_detect = (OPCODES[0xf93f] = new Opcode({ + code: 0xf93f, + mnemonic: "keyword_detect", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly keyword = (OPCODES[0xf940] = new Opcode({ + code: 0xf940, + mnemonic: "keyword", + params: [], + push_stack: false, + stack_params: [{ type: Type.RegRef }, { type: TYPE_U32 }, { type: TYPE_STRING }], + })); + static readonly get_guildcard_num = (OPCODES[0xf941] = new Opcode({ + code: 0xf941, + mnemonic: "get_guildcard_num", + params: [], + push_stack: false, + stack_params: [{ type: TYPE_U32 }, { type: Type.RegRef }], + })); + static readonly unknown_f942 = (OPCODES[0xf942] = new Opcode({ + code: 0xf942, + mnemonic: "unknown_f942", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f943 = (OPCODES[0xf943] = new Opcode({ + code: 0xf943, + mnemonic: "unknown_f943", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly get_wrap_status = (OPCODES[0xf944] = new Opcode({ + code: 0xf944, + mnemonic: "get_wrap_status", + params: [], + push_stack: false, + stack_params: [{ type: TYPE_U32 }, { type: Type.RegRef }], + })); + static readonly initial_floor = (OPCODES[0xf945] = new Opcode({ + code: 0xf945, + mnemonic: "initial_floor", + params: [], + push_stack: false, + stack_params: [{ type: TYPE_U32 }], + })); + static readonly sin = (OPCODES[0xf946] = new Opcode({ + code: 0xf946, + mnemonic: "sin", + params: [], + push_stack: false, + stack_params: [{ type: Type.RegRef }, { type: TYPE_U32 }], + })); + static readonly cos = (OPCODES[0xf947] = new Opcode({ + code: 0xf947, + mnemonic: "cos", + params: [], + push_stack: false, + stack_params: [{ type: Type.RegRef }, { type: TYPE_U32 }], + })); + static readonly unknown_f948 = (OPCODES[0xf948] = new Opcode({ + code: 0xf948, + mnemonic: "unknown_f948", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f949 = (OPCODES[0xf949] = new Opcode({ + code: 0xf949, + mnemonic: "unknown_f949", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly boss_is_dead2 = (OPCODES[0xf94a] = new Opcode({ + code: 0xf94a, + mnemonic: "boss_is_dead2", + params: [{ type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f94b = (OPCODES[0xf94b] = new Opcode({ + code: 0xf94b, + mnemonic: "unknown_f94b", + params: [{ type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f94c = (OPCODES[0xf94c] = new Opcode({ + code: 0xf94c, + mnemonic: "unknown_f94c", + params: [{ type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly is_there_cardbattle = (OPCODES[0xf94d] = new Opcode({ + code: 0xf94d, + mnemonic: "is_there_cardbattle", + params: [{ type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f94e = (OPCODES[0xf94e] = new Opcode({ + code: 0xf94e, + mnemonic: "unknown_f94e", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f94f = (OPCODES[0xf94f] = new Opcode({ + code: 0xf94f, + mnemonic: "unknown_f94f", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly bb_p2_menu = (OPCODES[0xf950] = new Opcode({ + code: 0xf950, + mnemonic: "bb_p2_menu", + params: [], + push_stack: false, + stack_params: [{ type: TYPE_U32 }], + })); + static readonly bb_map_designate = (OPCODES[0xf951] = new Opcode({ + code: 0xf951, + mnemonic: "bb_map_designate", + params: [{ type: TYPE_U8 }, { type: TYPE_U16 }, { type: TYPE_U8 }, { type: TYPE_U8 }], + push_stack: false, + stack_params: [], + })); + static readonly bb_get_number_in_pack = (OPCODES[0xf952] = new Opcode({ + code: 0xf952, + mnemonic: "bb_get_number_in_pack", + params: [{ type: Type.RegRef }], + push_stack: false, + stack_params: [], + })); + static readonly bb_swap_item = (OPCODES[0xf953] = new Opcode({ + code: 0xf953, + mnemonic: "bb_swap_item", + params: [], + push_stack: false, + stack_params: [ + { type: TYPE_U32 }, + { type: TYPE_U32 }, + { type: TYPE_U32 }, + { type: TYPE_U32 }, + { type: TYPE_U32 }, + { type: TYPE_U32 }, + { type: TYPE_I_LABEL }, + { type: TYPE_I_LABEL }, + ], + })); + static readonly bb_check_wrap = (OPCODES[0xf954] = new Opcode({ + code: 0xf954, + mnemonic: "bb_check_wrap", + params: [], + push_stack: false, + stack_params: [{ type: Type.RegRef }, { type: Type.RegRef }], + })); + static readonly bb_exchange_pd_item = (OPCODES[0xf955] = new Opcode({ + code: 0xf955, + mnemonic: "bb_exchange_pd_item", + params: [], + push_stack: false, + stack_params: [ + { type: Type.RegRef }, + { type: Type.RegRef }, + { type: Type.RegRef }, + { type: TYPE_I_LABEL }, + { type: TYPE_I_LABEL }, + ], + })); + static readonly bb_exchange_pd_srank = (OPCODES[0xf956] = new Opcode({ + code: 0xf956, + mnemonic: "bb_exchange_pd_srank", + params: [], + push_stack: false, + stack_params: [ + { type: Type.RegRef }, + { type: Type.RegRef }, + { type: Type.RegRef }, + { type: Type.RegRef }, + { type: Type.RegRef }, + { type: TYPE_I_LABEL }, + { type: TYPE_I_LABEL }, + ], + })); + static readonly bb_exchange_pd_special = (OPCODES[0xf957] = new Opcode({ + code: 0xf957, + mnemonic: "bb_exchange_pd_special", + params: [], + push_stack: false, + stack_params: [ + { type: Type.RegRef }, + { type: Type.RegRef }, + { type: Type.RegRef }, + { type: Type.RegRef }, + { type: Type.RegRef }, + { type: TYPE_U32 }, + { type: TYPE_I_LABEL }, + { type: TYPE_I_LABEL }, + ], + })); + static readonly bb_exchange_pd_percent = (OPCODES[0xf958] = new Opcode({ + code: 0xf958, + mnemonic: "bb_exchange_pd_percent", + params: [], + push_stack: false, + stack_params: [ + { type: Type.RegRef }, + { type: Type.RegRef }, + { type: Type.RegRef }, + { type: Type.RegRef }, + { type: Type.RegRef }, + { type: TYPE_U32 }, + { type: TYPE_I_LABEL }, + { type: TYPE_I_LABEL }, + ], + })); + static readonly unknown_f959 = (OPCODES[0xf959] = new Opcode({ + code: 0xf959, + mnemonic: "unknown_f959", + params: [], + push_stack: false, + stack_params: [{ type: TYPE_U32 }], + })); + static readonly unknown_f95a = (OPCODES[0xf95a] = new Opcode({ + code: 0xf95a, + mnemonic: "unknown_f95a", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f95b = (OPCODES[0xf95b] = new Opcode({ + code: 0xf95b, + mnemonic: "unknown_f95b", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly bb_exchange_slt = (OPCODES[0xf95c] = new Opcode({ + code: 0xf95c, + mnemonic: "bb_exchange_slt", + params: [], + push_stack: false, + stack_params: [ + { type: TYPE_U32 }, + { type: Type.RegRef }, + { type: TYPE_I_LABEL }, + { type: TYPE_I_LABEL }, + ], + })); + static readonly bb_exchange_pc = (OPCODES[0xf95d] = new Opcode({ + code: 0xf95d, + mnemonic: "bb_exchange_pc", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly bb_box_create_bp = (OPCODES[0xf95e] = new Opcode({ + code: 0xf95e, + mnemonic: "bb_box_create_bp", + params: [], + push_stack: false, + stack_params: [{ type: TYPE_U32 }, { type: TYPE_F32 }, { type: TYPE_F32 }], + })); + static readonly bb_exchange_pt = (OPCODES[0xf95f] = new Opcode({ + code: 0xf95f, + mnemonic: "bb_exchange_pt", + params: [], + push_stack: false, + stack_params: [ + { type: Type.RegRef }, + { type: Type.RegRef }, + { type: TYPE_U32 }, + { type: TYPE_I_LABEL }, + { type: TYPE_I_LABEL }, + ], + })); + static readonly unknown_f960 = (OPCODES[0xf960] = new Opcode({ + code: 0xf960, + mnemonic: "unknown_f960", + params: [], + push_stack: false, + stack_params: [{ type: TYPE_U32 }], + })); + static readonly unknown_f961 = (OPCODES[0xf961] = new Opcode({ + code: 0xf961, + mnemonic: "unknown_f961", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f962 = (OPCODES[0xf962] = new Opcode({ + code: 0xf962, + mnemonic: "unknown_f962", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f963 = (OPCODES[0xf963] = new Opcode({ + code: 0xf963, + mnemonic: "unknown_f963", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f964 = (OPCODES[0xf964] = new Opcode({ + code: 0xf964, + mnemonic: "unknown_f964", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f965 = (OPCODES[0xf965] = new Opcode({ + code: 0xf965, + mnemonic: "unknown_f965", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f966 = (OPCODES[0xf966] = new Opcode({ + code: 0xf966, + mnemonic: "unknown_f966", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f967 = (OPCODES[0xf967] = new Opcode({ + code: 0xf967, + mnemonic: "unknown_f967", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f968 = (OPCODES[0xf968] = new Opcode({ + code: 0xf968, + mnemonic: "unknown_f968", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f969 = (OPCODES[0xf969] = new Opcode({ + code: 0xf969, + mnemonic: "unknown_f969", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f96a = (OPCODES[0xf96a] = new Opcode({ + code: 0xf96a, + mnemonic: "unknown_f96a", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f96b = (OPCODES[0xf96b] = new Opcode({ + code: 0xf96b, + mnemonic: "unknown_f96b", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f96c = (OPCODES[0xf96c] = new Opcode({ + code: 0xf96c, + mnemonic: "unknown_f96c", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f96d = (OPCODES[0xf96d] = new Opcode({ + code: 0xf96d, + mnemonic: "unknown_f96d", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f96e = (OPCODES[0xf96e] = new Opcode({ + code: 0xf96e, + mnemonic: "unknown_f96e", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f96f = (OPCODES[0xf96f] = new Opcode({ + code: 0xf96f, + mnemonic: "unknown_f96f", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f970 = (OPCODES[0xf970] = new Opcode({ + code: 0xf970, + mnemonic: "unknown_f970", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f971 = (OPCODES[0xf971] = new Opcode({ + code: 0xf971, + mnemonic: "unknown_f971", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f972 = (OPCODES[0xf972] = new Opcode({ + code: 0xf972, + mnemonic: "unknown_f972", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f973 = (OPCODES[0xf973] = new Opcode({ + code: 0xf973, + mnemonic: "unknown_f973", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f974 = (OPCODES[0xf974] = new Opcode({ + code: 0xf974, + mnemonic: "unknown_f974", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f975 = (OPCODES[0xf975] = new Opcode({ + code: 0xf975, + mnemonic: "unknown_f975", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f976 = (OPCODES[0xf976] = new Opcode({ + code: 0xf976, + mnemonic: "unknown_f976", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f977 = (OPCODES[0xf977] = new Opcode({ + code: 0xf977, + mnemonic: "unknown_f977", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f978 = (OPCODES[0xf978] = new Opcode({ + code: 0xf978, + mnemonic: "unknown_f978", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f979 = (OPCODES[0xf979] = new Opcode({ + code: 0xf979, + mnemonic: "unknown_f979", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f97a = (OPCODES[0xf97a] = new Opcode({ + code: 0xf97a, + mnemonic: "unknown_f97a", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f97b = (OPCODES[0xf97b] = new Opcode({ + code: 0xf97b, + mnemonic: "unknown_f97b", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f97c = (OPCODES[0xf97c] = new Opcode({ + code: 0xf97c, + mnemonic: "unknown_f97c", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f97d = (OPCODES[0xf97d] = new Opcode({ + code: 0xf97d, + mnemonic: "unknown_f97d", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f97e = (OPCODES[0xf97e] = new Opcode({ + code: 0xf97e, + mnemonic: "unknown_f97e", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f97f = (OPCODES[0xf97f] = new Opcode({ + code: 0xf97f, + mnemonic: "unknown_f97f", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f980 = (OPCODES[0xf980] = new Opcode({ + code: 0xf980, + mnemonic: "unknown_f980", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f981 = (OPCODES[0xf981] = new Opcode({ + code: 0xf981, + mnemonic: "unknown_f981", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f982 = (OPCODES[0xf982] = new Opcode({ + code: 0xf982, + mnemonic: "unknown_f982", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f983 = (OPCODES[0xf983] = new Opcode({ + code: 0xf983, + mnemonic: "unknown_f983", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f984 = (OPCODES[0xf984] = new Opcode({ + code: 0xf984, + mnemonic: "unknown_f984", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f985 = (OPCODES[0xf985] = new Opcode({ + code: 0xf985, + mnemonic: "unknown_f985", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f986 = (OPCODES[0xf986] = new Opcode({ + code: 0xf986, + mnemonic: "unknown_f986", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f987 = (OPCODES[0xf987] = new Opcode({ + code: 0xf987, + mnemonic: "unknown_f987", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f988 = (OPCODES[0xf988] = new Opcode({ + code: 0xf988, + mnemonic: "unknown_f988", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f989 = (OPCODES[0xf989] = new Opcode({ + code: 0xf989, + mnemonic: "unknown_f989", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f98a = (OPCODES[0xf98a] = new Opcode({ + code: 0xf98a, + mnemonic: "unknown_f98a", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f98b = (OPCODES[0xf98b] = new Opcode({ + code: 0xf98b, + mnemonic: "unknown_f98b", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f98c = (OPCODES[0xf98c] = new Opcode({ + code: 0xf98c, + mnemonic: "unknown_f98c", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f98d = (OPCODES[0xf98d] = new Opcode({ + code: 0xf98d, + mnemonic: "unknown_f98d", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f98e = (OPCODES[0xf98e] = new Opcode({ + code: 0xf98e, + mnemonic: "unknown_f98e", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f98f = (OPCODES[0xf98f] = new Opcode({ + code: 0xf98f, + mnemonic: "unknown_f98f", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f990 = (OPCODES[0xf990] = new Opcode({ + code: 0xf990, + mnemonic: "unknown_f990", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f991 = (OPCODES[0xf991] = new Opcode({ + code: 0xf991, + mnemonic: "unknown_f991", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f992 = (OPCODES[0xf992] = new Opcode({ + code: 0xf992, + mnemonic: "unknown_f992", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f993 = (OPCODES[0xf993] = new Opcode({ + code: 0xf993, + mnemonic: "unknown_f993", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f994 = (OPCODES[0xf994] = new Opcode({ + code: 0xf994, + mnemonic: "unknown_f994", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f995 = (OPCODES[0xf995] = new Opcode({ + code: 0xf995, + mnemonic: "unknown_f995", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f996 = (OPCODES[0xf996] = new Opcode({ + code: 0xf996, + mnemonic: "unknown_f996", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f997 = (OPCODES[0xf997] = new Opcode({ + code: 0xf997, + mnemonic: "unknown_f997", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f998 = (OPCODES[0xf998] = new Opcode({ + code: 0xf998, + mnemonic: "unknown_f998", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f999 = (OPCODES[0xf999] = new Opcode({ + code: 0xf999, + mnemonic: "unknown_f999", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f99a = (OPCODES[0xf99a] = new Opcode({ + code: 0xf99a, + mnemonic: "unknown_f99a", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f99b = (OPCODES[0xf99b] = new Opcode({ + code: 0xf99b, + mnemonic: "unknown_f99b", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f99c = (OPCODES[0xf99c] = new Opcode({ + code: 0xf99c, + mnemonic: "unknown_f99c", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f99d = (OPCODES[0xf99d] = new Opcode({ + code: 0xf99d, + mnemonic: "unknown_f99d", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f99e = (OPCODES[0xf99e] = new Opcode({ + code: 0xf99e, + mnemonic: "unknown_f99e", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f99f = (OPCODES[0xf99f] = new Opcode({ + code: 0xf99f, + mnemonic: "unknown_f99f", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f9a0 = (OPCODES[0xf9a0] = new Opcode({ + code: 0xf9a0, + mnemonic: "unknown_f9a0", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f9a1 = (OPCODES[0xf9a1] = new Opcode({ + code: 0xf9a1, + mnemonic: "unknown_f9a1", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f9a2 = (OPCODES[0xf9a2] = new Opcode({ + code: 0xf9a2, + mnemonic: "unknown_f9a2", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f9a3 = (OPCODES[0xf9a3] = new Opcode({ + code: 0xf9a3, + mnemonic: "unknown_f9a3", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f9a4 = (OPCODES[0xf9a4] = new Opcode({ + code: 0xf9a4, + mnemonic: "unknown_f9a4", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f9a5 = (OPCODES[0xf9a5] = new Opcode({ + code: 0xf9a5, + mnemonic: "unknown_f9a5", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f9a6 = (OPCODES[0xf9a6] = new Opcode({ + code: 0xf9a6, + mnemonic: "unknown_f9a6", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f9a7 = (OPCODES[0xf9a7] = new Opcode({ + code: 0xf9a7, + mnemonic: "unknown_f9a7", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f9a8 = (OPCODES[0xf9a8] = new Opcode({ + code: 0xf9a8, + mnemonic: "unknown_f9a8", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f9a9 = (OPCODES[0xf9a9] = new Opcode({ + code: 0xf9a9, + mnemonic: "unknown_f9a9", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f9aa = (OPCODES[0xf9aa] = new Opcode({ + code: 0xf9aa, + mnemonic: "unknown_f9aa", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f9ab = (OPCODES[0xf9ab] = new Opcode({ + code: 0xf9ab, + mnemonic: "unknown_f9ab", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f9ac = (OPCODES[0xf9ac] = new Opcode({ + code: 0xf9ac, + mnemonic: "unknown_f9ac", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f9ad = (OPCODES[0xf9ad] = new Opcode({ + code: 0xf9ad, + mnemonic: "unknown_f9ad", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f9ae = (OPCODES[0xf9ae] = new Opcode({ + code: 0xf9ae, + mnemonic: "unknown_f9ae", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f9af = (OPCODES[0xf9af] = new Opcode({ + code: 0xf9af, + mnemonic: "unknown_f9af", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f9b0 = (OPCODES[0xf9b0] = new Opcode({ + code: 0xf9b0, + mnemonic: "unknown_f9b0", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f9b1 = (OPCODES[0xf9b1] = new Opcode({ + code: 0xf9b1, + mnemonic: "unknown_f9b1", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f9b2 = (OPCODES[0xf9b2] = new Opcode({ + code: 0xf9b2, + mnemonic: "unknown_f9b2", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f9b3 = (OPCODES[0xf9b3] = new Opcode({ + code: 0xf9b3, + mnemonic: "unknown_f9b3", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f9b4 = (OPCODES[0xf9b4] = new Opcode({ + code: 0xf9b4, + mnemonic: "unknown_f9b4", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f9b5 = (OPCODES[0xf9b5] = new Opcode({ + code: 0xf9b5, + mnemonic: "unknown_f9b5", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f9b6 = (OPCODES[0xf9b6] = new Opcode({ + code: 0xf9b6, + mnemonic: "unknown_f9b6", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f9b7 = (OPCODES[0xf9b7] = new Opcode({ + code: 0xf9b7, + mnemonic: "unknown_f9b7", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f9b8 = (OPCODES[0xf9b8] = new Opcode({ + code: 0xf9b8, + mnemonic: "unknown_f9b8", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f9b9 = (OPCODES[0xf9b9] = new Opcode({ + code: 0xf9b9, + mnemonic: "unknown_f9b9", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f9ba = (OPCODES[0xf9ba] = new Opcode({ + code: 0xf9ba, + mnemonic: "unknown_f9ba", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f9bb = (OPCODES[0xf9bb] = new Opcode({ + code: 0xf9bb, + mnemonic: "unknown_f9bb", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f9bc = (OPCODES[0xf9bc] = new Opcode({ + code: 0xf9bc, + mnemonic: "unknown_f9bc", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f9bd = (OPCODES[0xf9bd] = new Opcode({ + code: 0xf9bd, + mnemonic: "unknown_f9bd", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f9be = (OPCODES[0xf9be] = new Opcode({ + code: 0xf9be, + mnemonic: "unknown_f9be", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f9bf = (OPCODES[0xf9bf] = new Opcode({ + code: 0xf9bf, + mnemonic: "unknown_f9bf", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f9c0 = (OPCODES[0xf9c0] = new Opcode({ + code: 0xf9c0, + mnemonic: "unknown_f9c0", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f9c1 = (OPCODES[0xf9c1] = new Opcode({ + code: 0xf9c1, + mnemonic: "unknown_f9c1", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f9c2 = (OPCODES[0xf9c2] = new Opcode({ + code: 0xf9c2, + mnemonic: "unknown_f9c2", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f9c3 = (OPCODES[0xf9c3] = new Opcode({ + code: 0xf9c3, + mnemonic: "unknown_f9c3", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f9c4 = (OPCODES[0xf9c4] = new Opcode({ + code: 0xf9c4, + mnemonic: "unknown_f9c4", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f9c5 = (OPCODES[0xf9c5] = new Opcode({ + code: 0xf9c5, + mnemonic: "unknown_f9c5", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f9c6 = (OPCODES[0xf9c6] = new Opcode({ + code: 0xf9c6, + mnemonic: "unknown_f9c6", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f9c7 = (OPCODES[0xf9c7] = new Opcode({ + code: 0xf9c7, + mnemonic: "unknown_f9c7", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f9c8 = (OPCODES[0xf9c8] = new Opcode({ + code: 0xf9c8, + mnemonic: "unknown_f9c8", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f9c9 = (OPCODES[0xf9c9] = new Opcode({ + code: 0xf9c9, + mnemonic: "unknown_f9c9", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f9ca = (OPCODES[0xf9ca] = new Opcode({ + code: 0xf9ca, + mnemonic: "unknown_f9ca", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f9cb = (OPCODES[0xf9cb] = new Opcode({ + code: 0xf9cb, + mnemonic: "unknown_f9cb", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f9cc = (OPCODES[0xf9cc] = new Opcode({ + code: 0xf9cc, + mnemonic: "unknown_f9cc", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f9cd = (OPCODES[0xf9cd] = new Opcode({ + code: 0xf9cd, + mnemonic: "unknown_f9cd", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f9ce = (OPCODES[0xf9ce] = new Opcode({ + code: 0xf9ce, + mnemonic: "unknown_f9ce", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f9cf = (OPCODES[0xf9cf] = new Opcode({ + code: 0xf9cf, + mnemonic: "unknown_f9cf", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f9d0 = (OPCODES[0xf9d0] = new Opcode({ + code: 0xf9d0, + mnemonic: "unknown_f9d0", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f9d1 = (OPCODES[0xf9d1] = new Opcode({ + code: 0xf9d1, + mnemonic: "unknown_f9d1", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f9d2 = (OPCODES[0xf9d2] = new Opcode({ + code: 0xf9d2, + mnemonic: "unknown_f9d2", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f9d3 = (OPCODES[0xf9d3] = new Opcode({ + code: 0xf9d3, + mnemonic: "unknown_f9d3", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f9d4 = (OPCODES[0xf9d4] = new Opcode({ + code: 0xf9d4, + mnemonic: "unknown_f9d4", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f9d5 = (OPCODES[0xf9d5] = new Opcode({ + code: 0xf9d5, + mnemonic: "unknown_f9d5", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f9d6 = (OPCODES[0xf9d6] = new Opcode({ + code: 0xf9d6, + mnemonic: "unknown_f9d6", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f9d7 = (OPCODES[0xf9d7] = new Opcode({ + code: 0xf9d7, + mnemonic: "unknown_f9d7", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f9d8 = (OPCODES[0xf9d8] = new Opcode({ + code: 0xf9d8, + mnemonic: "unknown_f9d8", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f9d9 = (OPCODES[0xf9d9] = new Opcode({ + code: 0xf9d9, + mnemonic: "unknown_f9d9", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f9da = (OPCODES[0xf9da] = new Opcode({ + code: 0xf9da, + mnemonic: "unknown_f9da", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f9db = (OPCODES[0xf9db] = new Opcode({ + code: 0xf9db, + mnemonic: "unknown_f9db", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f9dc = (OPCODES[0xf9dc] = new Opcode({ + code: 0xf9dc, + mnemonic: "unknown_f9dc", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f9dd = (OPCODES[0xf9dd] = new Opcode({ + code: 0xf9dd, + mnemonic: "unknown_f9dd", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f9de = (OPCODES[0xf9de] = new Opcode({ + code: 0xf9de, + mnemonic: "unknown_f9de", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f9df = (OPCODES[0xf9df] = new Opcode({ + code: 0xf9df, + mnemonic: "unknown_f9df", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f9e0 = (OPCODES[0xf9e0] = new Opcode({ + code: 0xf9e0, + mnemonic: "unknown_f9e0", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f9e1 = (OPCODES[0xf9e1] = new Opcode({ + code: 0xf9e1, + mnemonic: "unknown_f9e1", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f9e2 = (OPCODES[0xf9e2] = new Opcode({ + code: 0xf9e2, + mnemonic: "unknown_f9e2", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f9e3 = (OPCODES[0xf9e3] = new Opcode({ + code: 0xf9e3, + mnemonic: "unknown_f9e3", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f9e4 = (OPCODES[0xf9e4] = new Opcode({ + code: 0xf9e4, + mnemonic: "unknown_f9e4", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f9e5 = (OPCODES[0xf9e5] = new Opcode({ + code: 0xf9e5, + mnemonic: "unknown_f9e5", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f9e6 = (OPCODES[0xf9e6] = new Opcode({ + code: 0xf9e6, + mnemonic: "unknown_f9e6", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f9e7 = (OPCODES[0xf9e7] = new Opcode({ + code: 0xf9e7, + mnemonic: "unknown_f9e7", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f9e8 = (OPCODES[0xf9e8] = new Opcode({ + code: 0xf9e8, + mnemonic: "unknown_f9e8", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f9e9 = (OPCODES[0xf9e9] = new Opcode({ + code: 0xf9e9, + mnemonic: "unknown_f9e9", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f9ea = (OPCODES[0xf9ea] = new Opcode({ + code: 0xf9ea, + mnemonic: "unknown_f9ea", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f9eb = (OPCODES[0xf9eb] = new Opcode({ + code: 0xf9eb, + mnemonic: "unknown_f9eb", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f9ec = (OPCODES[0xf9ec] = new Opcode({ + code: 0xf9ec, + mnemonic: "unknown_f9ec", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f9ed = (OPCODES[0xf9ed] = new Opcode({ + code: 0xf9ed, + mnemonic: "unknown_f9ed", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f9ee = (OPCODES[0xf9ee] = new Opcode({ + code: 0xf9ee, + mnemonic: "unknown_f9ee", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f9ef = (OPCODES[0xf9ef] = new Opcode({ + code: 0xf9ef, + mnemonic: "unknown_f9ef", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f9f0 = (OPCODES[0xf9f0] = new Opcode({ + code: 0xf9f0, + mnemonic: "unknown_f9f0", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f9f1 = (OPCODES[0xf9f1] = new Opcode({ + code: 0xf9f1, + mnemonic: "unknown_f9f1", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f9f2 = (OPCODES[0xf9f2] = new Opcode({ + code: 0xf9f2, + mnemonic: "unknown_f9f2", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f9f3 = (OPCODES[0xf9f3] = new Opcode({ + code: 0xf9f3, + mnemonic: "unknown_f9f3", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f9f4 = (OPCODES[0xf9f4] = new Opcode({ + code: 0xf9f4, + mnemonic: "unknown_f9f4", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f9f5 = (OPCODES[0xf9f5] = new Opcode({ + code: 0xf9f5, + mnemonic: "unknown_f9f5", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f9f6 = (OPCODES[0xf9f6] = new Opcode({ + code: 0xf9f6, + mnemonic: "unknown_f9f6", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f9f7 = (OPCODES[0xf9f7] = new Opcode({ + code: 0xf9f7, + mnemonic: "unknown_f9f7", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f9f8 = (OPCODES[0xf9f8] = new Opcode({ + code: 0xf9f8, + mnemonic: "unknown_f9f8", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f9f9 = (OPCODES[0xf9f9] = new Opcode({ + code: 0xf9f9, + mnemonic: "unknown_f9f9", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f9fa = (OPCODES[0xf9fa] = new Opcode({ + code: 0xf9fa, + mnemonic: "unknown_f9fa", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f9fb = (OPCODES[0xf9fb] = new Opcode({ + code: 0xf9fb, + mnemonic: "unknown_f9fb", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f9fc = (OPCODES[0xf9fc] = new Opcode({ + code: 0xf9fc, + mnemonic: "unknown_f9fc", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f9fd = (OPCODES[0xf9fd] = new Opcode({ + code: 0xf9fd, + mnemonic: "unknown_f9fd", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f9fe = (OPCODES[0xf9fe] = new Opcode({ + code: 0xf9fe, + mnemonic: "unknown_f9fe", + params: [], + push_stack: false, + stack_params: [], + })); + static readonly unknown_f9ff = (OPCODES[0xf9ff] = new Opcode({ + code: 0xf9ff, + mnemonic: "unknown_f9ff", + params: [], + push_stack: false, + stack_params: [], + })); } export const OPCODES_BY_MNEMONIC = new Map(); diff --git a/src/scripting/assembly.ts b/src/scripting/assembly.ts index 308e0c45..0844e348 100644 --- a/src/scripting/assembly.ts +++ b/src/scripting/assembly.ts @@ -388,7 +388,7 @@ class Assembler { switch (param.type) { case Type.U8: - case Type.Register: + case Type.RegRef: this.add_instruction(Opcode.arg_pushb, [arg]); break; case Type.U16: @@ -503,7 +503,7 @@ class Assembler { break; case TokenType.Register: - match = param.type === Type.Register; + match = param.type === Type.RegRef; this.parse_register(token, args); break; case TokenType.String: @@ -543,7 +543,7 @@ class Assembler { case Type.F32: type_str = "a float"; break; - case Type.Register: + case Type.RegRef: type_str = "a register reference"; break; case Type.ILabel: diff --git a/src/scripting/data_flow_analysis/ControlFlowGraph.ts b/src/scripting/data_flow_analysis/ControlFlowGraph.ts index 4968d15b..1050b5a6 100644 --- a/src/scripting/data_flow_analysis/ControlFlowGraph.ts +++ b/src/scripting/data_flow_analysis/ControlFlowGraph.ts @@ -37,164 +37,169 @@ export class BasicBlock { export class ControlFlowGraph { readonly blocks: BasicBlock[] = []; - readonly instructions: Map = new Map(); + + private readonly instructions_to_block: Map = new Map(); + private readonly labels_to_block = new Map(); + + get_block_for_instuction(instruction: Instruction): BasicBlock | undefined { + return this.instructions_to_block.get(instruction); + } + + get_block_for_label(label: number): BasicBlock | undefined { + return this.labels_to_block.get(label); + } static create(segments: InstructionSegment[]): ControlFlowGraph { const cfg = new ControlFlowGraph(); // Mapping of labels to basic blocks. - const label_blocks = new Map(); for (const segment of segments) { - create_basic_blocks(cfg, label_blocks, segment); + this.create_basic_blocks(cfg, segment); } - link_blocks(cfg, label_blocks); + this.link_blocks(cfg); return cfg; } -} -function create_basic_blocks( - cfg: ControlFlowGraph, - label_blocks: Map, - segment: InstructionSegment -) { - const len = segment.instructions.length; - let start = 0; - let first_block = true; + private static create_basic_blocks(cfg: ControlFlowGraph, segment: InstructionSegment) { + const len = segment.instructions.length; + let start = 0; + let first_block = true; - for (let i = 0; i < len; i++) { - const inst = segment.instructions[i]; + for (let i = 0; i < len; i++) { + const inst = segment.instructions[i]; - let branch_type: BranchType; - let branch_labels: number[]; + let branch_type: BranchType; + let branch_labels: number[]; - switch (inst.opcode) { - // Return. - case Opcode.ret: - branch_type = BranchType.Return; - branch_labels = []; - break; - - // Unconditional jump. - case Opcode.jmp: - branch_type = BranchType.Jump; - branch_labels = [inst.args[0].value]; - break; - - // Conditional jumps. - case Opcode.jmp_on: - case Opcode.jmp_off: - branch_type = BranchType.ConditionalJump; - branch_labels = [inst.args[0].value]; - break; - case Opcode.jmp_e: - case Opcode.jmpi_e: - case Opcode.jmp_ne: - case Opcode.jmpi_ne: - case Opcode.ujmp_g: - case Opcode.ujmpi_g: - case Opcode.jmp_g: - case Opcode.jmpi_g: - case Opcode.ujmp_l: - case Opcode.ujmpi_l: - case Opcode.jmp_l: - case Opcode.jmpi_l: - case Opcode.ujmp_ge: - case Opcode.ujmpi_ge: - case Opcode.jmp_ge: - case Opcode.jmpi_ge: - case Opcode.ujmp_le: - case Opcode.ujmpi_le: - case Opcode.jmp_le: - case Opcode.jmpi_le: - branch_type = BranchType.ConditionalJump; - branch_labels = [inst.args[2].value]; - break; - case Opcode.switch_jmp: - branch_type = BranchType.ConditionalJump; - branch_labels = inst.args.slice(1).map(a => a.value); - break; - - // Calls. - case Opcode.call: - branch_type = BranchType.Call; - branch_labels = [inst.args[0].value]; - break; - case Opcode.va_call: - branch_type = BranchType.Call; - branch_labels = [inst.args[0].value]; - break; - case Opcode.switch_call: - branch_type = BranchType.Call; - branch_labels = inst.args.slice(1).map(a => a.value); - break; - - // All other opcodes. - default: - if (i === len - 1) { - branch_type = BranchType.None; + switch (inst.opcode) { + // Return. + case Opcode.ret: + branch_type = BranchType.Return; branch_labels = []; break; - } else { + + // Unconditional jump. + case Opcode.jmp: + branch_type = BranchType.Jump; + branch_labels = [inst.args[0].value]; + break; + + // Conditional jumps. + case Opcode.jmp_on: + case Opcode.jmp_off: + branch_type = BranchType.ConditionalJump; + branch_labels = [inst.args[0].value]; + break; + case Opcode.jmp_e: + case Opcode.jmpi_e: + case Opcode.jmp_ne: + case Opcode.jmpi_ne: + case Opcode.ujmp_g: + case Opcode.ujmpi_g: + case Opcode.jmp_g: + case Opcode.jmpi_g: + case Opcode.ujmp_l: + case Opcode.ujmpi_l: + case Opcode.jmp_l: + case Opcode.jmpi_l: + case Opcode.ujmp_ge: + case Opcode.ujmpi_ge: + case Opcode.jmp_ge: + case Opcode.jmpi_ge: + case Opcode.ujmp_le: + case Opcode.ujmpi_le: + case Opcode.jmp_le: + case Opcode.jmpi_le: + branch_type = BranchType.ConditionalJump; + branch_labels = [inst.args[2].value]; + break; + case Opcode.switch_jmp: + branch_type = BranchType.ConditionalJump; + branch_labels = inst.args.slice(1).map(a => a.value); + break; + + // Calls. + case Opcode.call: + branch_type = BranchType.Call; + branch_labels = [inst.args[0].value]; + break; + case Opcode.va_call: + branch_type = BranchType.Call; + branch_labels = [inst.args[0].value]; + break; + case Opcode.switch_call: + branch_type = BranchType.Call; + branch_labels = inst.args.slice(1).map(a => a.value); + break; + + // All other opcodes. + default: + if (i === len - 1) { + branch_type = BranchType.None; + branch_labels = []; + break; + } else { + continue; + } + } + + const block = new BasicBlock(segment, start, i + 1, branch_type, branch_labels); + + for (let j = block.start; j < block.end; j++) { + cfg.instructions_to_block.set(block.segment.instructions[j], block); + } + + cfg.blocks.push(block); + + if (first_block) { + for (const label of segment.labels) { + cfg.labels_to_block.set(label, block); + } + + first_block = false; + } + + start = i + 1; + } + } + + private static link_blocks(cfg: ControlFlowGraph): void { + // Pairs of calling block and block to which callees should return to. + const callers: [BasicBlock, BasicBlock][] = []; + + for (let i = 0; i < cfg.blocks.length; i++) { + const block = cfg.blocks[i]; + const next_block = cfg.blocks[i + 1]; + + switch (block.branch_type) { + case BranchType.Return: continue; - } - } - - const block = new BasicBlock(segment, start, i + 1, branch_type, branch_labels); - - for (let j = block.start; j < block.end; j++) { - cfg.instructions.set(block.segment.instructions[j], block); - } - - cfg.blocks.push(block); - - if (first_block) { - for (const label of segment.labels) { - label_blocks.set(label, block); + case BranchType.Call: + if (next_block) { + callers.push([block, next_block]); + } + break; + case BranchType.None: + case BranchType.ConditionalJump: + if (next_block) { + block.link_to(next_block); + } + break; } - first_block = false; - } + for (const label of block.branch_labels) { + const to_block = cfg.labels_to_block.get(label); - start = i + 1; - } -} - -function link_blocks(cfg: ControlFlowGraph, label_blocks: Map): void { - // Pairs of calling block and block to which callees should return to. - const callers: [BasicBlock, BasicBlock][] = []; - - for (let i = 0; i < cfg.blocks.length; i++) { - const block = cfg.blocks[i]; - const next_block = cfg.blocks[i + 1]; - - switch (block.branch_type) { - case BranchType.Return: - continue; - case BranchType.Call: - if (next_block) { - callers.push([block, next_block]); + if (to_block) { + block.link_to(to_block); } - break; - case BranchType.None: - case BranchType.ConditionalJump: - if (next_block) { - block.link_to(next_block); - } - break; - } - - for (const label of block.branch_labels) { - const to_block = label_blocks.get(label); - - if (to_block) { - block.link_to(to_block); } } - } - for (const [caller, ret] of callers) { - link_returning_blocks(label_blocks, ret, caller); + for (const [caller, ret] of callers) { + link_returning_blocks(cfg.labels_to_block, ret, caller); + } } } diff --git a/src/scripting/data_flow_analysis/ValueSet.ts b/src/scripting/data_flow_analysis/ValueSet.ts index 56eab3b4..373c5647 100644 --- a/src/scripting/data_flow_analysis/ValueSet.ts +++ b/src/scripting/data_flow_analysis/ValueSet.ts @@ -69,6 +69,9 @@ export class ValueSet { return this; } + /** + * Doesn't take into account interger overflow. + */ scalar_add(s: number): ValueSet { for (const int of this.intervals) { int.start += s; @@ -78,10 +81,16 @@ export class ValueSet { return this; } + /** + * Doesn't take into account interger overflow. + */ scalar_sub(s: number): ValueSet { return this.scalar_add(-s); } + /** + * Doesn't take into account interger overflow. + */ scalar_mul(s: number): ValueSet { for (const int of this.intervals) { int.start *= s; @@ -93,6 +102,7 @@ export class ValueSet { /** * Integer division. + * Doesn't take into account interger overflow. */ scalar_div(s: number): ValueSet { for (const int of this.intervals) { diff --git a/src/scripting/data_flow_analysis/register_values.test.ts b/src/scripting/data_flow_analysis/register_values.test.ts index 3e8bdcdb..5dc8cb8e 100644 --- a/src/scripting/data_flow_analysis/register_values.test.ts +++ b/src/scripting/data_flow_analysis/register_values.test.ts @@ -1,7 +1,12 @@ -import { InstructionSegment, SegmentType, Opcode } from "../../data_formats/parsing/quest/bin"; +import { InstructionSegment, Opcode, SegmentType } from "../../data_formats/parsing/quest/bin"; import { assemble } from "../assembly"; import { ControlFlowGraph } from "./ControlFlowGraph"; -import { register_values } from "./register_values"; +import { + MAX_REGISTER_VALUE, + MIN_REGISTER_VALUE, + register_values, + REGISTER_VALUES, +} from "./register_values"; test(`${register_values.name} trivial case`, () => { const im = to_instructions(` @@ -46,6 +51,19 @@ test(`${register_values.name} two code paths`, () => { expect(values.get(1)).toBe(222); }); +test(`${register_values.name} loop`, () => { + const im = to_instructions(` + 0: + addi r10, 5 + jmpi_< r10, 500, 0 + ret + `); + const cfg = ControlFlowGraph.create(im); + const values = register_values(cfg, im[0].instructions[2], 10); + + expect(values.size()).toBe(REGISTER_VALUES); +}); + test(`${register_values.name} leta and leto`, () => { const im = to_instructions(` 0: @@ -56,15 +74,15 @@ test(`${register_values.name} leta and leto`, () => { const cfg = ControlFlowGraph.create(im); const r0 = register_values(cfg, im[0].instructions[2], 0); - expect(r0.size()).toBe(Math.pow(2, 32)); - expect(r0.min()).toBe(-Math.pow(2, 31)); - expect(r0.max()).toBe(Math.pow(2, 31) - 1); + expect(r0.size()).toBe(REGISTER_VALUES); + expect(r0.min()).toBe(MIN_REGISTER_VALUE); + expect(r0.max()).toBe(MAX_REGISTER_VALUE); const r1 = register_values(cfg, im[0].instructions[2], 1); - expect(r1.size()).toBe(Math.pow(2, 32)); - expect(r1.min()).toBe(-Math.pow(2, 31)); - expect(r1.max()).toBe(Math.pow(2, 31) - 1); + expect(r1.size()).toBe(REGISTER_VALUES); + expect(r1.min()).toBe(MIN_REGISTER_VALUE); + expect(r1.max()).toBe(MAX_REGISTER_VALUE); }); test(`${register_values.name} rev`, () => { @@ -147,8 +165,8 @@ test(`${register_values.name} get_random`, () => { const v1 = register_values(cfg, im[0].instructions[5], 10); - expect(v0.size()).toBe(1); - expect(v0.get(0)).toBe(20); + expect(v1.size()).toBe(1); + expect(v1.get(0)).toBe(20); const v2 = register_values(cfg, im[0].instructions[7], 10); diff --git a/src/scripting/data_flow_analysis/register_values.ts b/src/scripting/data_flow_analysis/register_values.ts index 5f6ca994..c8f912ab 100644 --- a/src/scripting/data_flow_analysis/register_values.ts +++ b/src/scripting/data_flow_analysis/register_values.ts @@ -1,9 +1,16 @@ -import { Instruction, Opcode } from "../../data_formats/parsing/quest/bin"; +import { + Instruction, + Opcode, + RegTupRefType, + TYPE_REG_REF, + TYPE_REG_REF_VAR, +} from "../../data_formats/parsing/quest/bin"; import { BasicBlock, ControlFlowGraph } from "./ControlFlowGraph"; import { ValueSet } from "./ValueSet"; -const MIN_REGISTER_VALUE = -Math.pow(2, 31); -const MAX_REGISTER_VALUE = Math.pow(2, 31) - 1; +export const MIN_REGISTER_VALUE = -Math.pow(2, 31); +export const MAX_REGISTER_VALUE = Math.pow(2, 31) - 1; +export const REGISTER_VALUES = Math.pow(2, 32); /** * Computes the possible values of a register at a specific instruction. @@ -13,7 +20,7 @@ export function register_values( instruction: Instruction, register: number ): ValueSet { - const block = cfg.instructions.get(instruction); + const block = cfg.get_block_for_instuction(instruction); if (block) { let inst_idx = block.start; @@ -26,13 +33,18 @@ export function register_values( inst_idx++; } - return find_values(block, inst_idx, register); + return find_values(new Set(), block, inst_idx, register); } else { return new ValueSet(); } } -function find_values(block: BasicBlock, end: number, register: number): ValueSet { +function find_values( + path: Set, + block: BasicBlock, + end: number, + register: number +): ValueSet { let values = new ValueSet(); for (let i = block.start; i < end; i++) { @@ -42,22 +54,17 @@ function find_values(block: BasicBlock, end: number, register: number): ValueSet switch (instruction.opcode) { case Opcode.let: if (args[0].value === register) { - values = find_values(block, i, args[1].value); + values = find_values(new Set(path), block, i, args[1].value); } break; case Opcode.leti: case Opcode.letb: case Opcode.letw: + case Opcode.sync_leti: if (args[0].value === register) { values.set_value(args[1].value); } break; - case Opcode.leta: - case Opcode.leto: - if (args[0].value === register) { - values.set_interval(MIN_REGISTER_VALUE, MAX_REGISTER_VALUE); - } - break; case Opcode.set: if (args[0].value === register) { values.set_value(1); @@ -70,7 +77,7 @@ function find_values(block: BasicBlock, end: number, register: number): ValueSet break; case Opcode.rev: if (args[0].value === register) { - const prev_vals = find_values(block, i, register); + const prev_vals = find_values(new Set(path), block, i, register); const prev_size = prev_vals.size(); if (prev_size === 0 || (prev_size === 1 && prev_vals.get(0) === 0)) { @@ -84,45 +91,89 @@ function find_values(block: BasicBlock, end: number, register: number): ValueSet break; case Opcode.addi: if (args[0].value === register) { - values = find_values(block, i, register); + values = find_values(new Set(path), block, i, register); values.scalar_add(args[1].value); } break; case Opcode.subi: if (args[0].value === register) { - values = find_values(block, i, register); + values = find_values(new Set(path), block, i, register); values.scalar_sub(args[1].value); } break; case Opcode.muli: if (args[0].value === register) { - values = find_values(block, i, register); + values = find_values(new Set(path), block, i, register); values.scalar_mul(args[1].value); } break; case Opcode.divi: if (args[0].value === register) { - values = find_values(block, i, register); + values = find_values(new Set(path), block, i, register); values.scalar_div(args[1].value); } break; + case Opcode.if_zone_clear: + if (args[0].value === register) { + values.set_interval(0, 1); + } + break; + case Opcode.get_difflvl: + case Opcode.get_slotnumber: + if (args[0].value === register) { + values.set_interval(0, 3); + } + break; case Opcode.get_random: if (args[1].value === register) { // TODO: undefined values. - const min = find_values(block, i, args[0].value).min() || 0; + const min = find_values(new Set(path), block, i, args[0].value).min() || 0; const max = Math.max( - find_values(block, i, args[0].value + 1).max() || 0, + find_values(new Set(path), block, i, args[0].value + 1).max() || 0, min + 1 ); values.set_interval(min, max - 1); } break; + default: + // Assume any other opcodes that write to the register can produce any value. + { + const params = instruction.opcode.params; + const len = Math.min(args.length, params.length); + + for (let j = 0; j < len; j++) { + const param = params[j]; + const val = args[j].value; + + if (param.write) { + if ( + (param.type instanceof RegTupRefType && + register >= val && + register < val + param.type.types.length) || + (param.type === TYPE_REG_REF && val.includes(register)) || + (param.type === TYPE_REG_REF_VAR && val.includes(register)) + ) { + values.set_interval(MIN_REGISTER_VALUE, MAX_REGISTER_VALUE); + break; + } + } + } + } + break; } } if (values.size() === 0) { + path.add(block); + for (const from of block.from) { - values.union(find_values(from, from.end, register)); + // Bail out from loops. + if (path.has(from)) { + values.set_interval(MIN_REGISTER_VALUE, MAX_REGISTER_VALUE); + break; + } + + values.union(find_values(new Set(path), from, from.end, register)); } } diff --git a/src/scripting/disassembly.ts b/src/scripting/disassembly.ts index 9e4f801b..749e62f4 100644 --- a/src/scripting/disassembly.ts +++ b/src/scripting/disassembly.ts @@ -113,7 +113,7 @@ function args_to_strings(params: Param[], args: Arg[]): string[] { } break; - case Type.Register: + case Type.RegRef: arg_strings.push("r" + arg.value); break; case Type.String: