"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."