fluffos_disassemble
Disassemble LPC files to display compiled bytecode for debugging and understanding code compilation processes.
Instructions
Disassemble an LPC file to show compiled bytecode using lpcc. Useful for debugging and understanding how code compiles.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| file | Yes | Absolute path to the LPC file to disassemble |
Input Schema (JSON Schema)
{
"properties": {
"file": {
"description": "Absolute path to the LPC file to disassemble",
"type": "string"
}
},
"required": [
"file"
],
"type": "object"
}