phantasmal-world/assets_generation/resources/asm/opcodes.schema.json
Daan Vanden Bosch 93e05ea614 - Moved instructions/opcodes and DFA code to core to avoid dependency from core to quest_editor
- When the assembly worker updates map designations, it now takes map_designate and map_designate_ex into account
2020-01-02 18:42:08 +01:00

122 lines
4.3 KiB
JSON

{
"$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"
},
"name": {
"type": "string",
"description": "Parameter name."
},
"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"
},
"name": {
"type": "string"
},
"doc": {
"type": "string"
},
"access": {
"$ref": "#/definitions/access"
}
}
}
}
}
},
"param_type": {
"type": "string",
"enum": [
"any",
"byte",
"word",
"dword",
"float",
"label",
"instruction_label",
"data_label",
"string_label",
"string",
"instruction_label_var",
"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)."
}
}
}