We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/nataliapc/mcp-openmsx'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
TRON.md•461 B
# TRON
## Effect
Debug instruction to start/enable tracing of MSX-BASIC program execution. Once executed the line number will be printed to screen each time execution moves to a new line.
## Syntax
`TRON`
## Example
```basic
10 FOR I=1 TO 3
20 PRINT I
30 NEXT
40 END
TRON
Ok
RUN
[10][20] 1
[30][20] 2
[30][20] 3
[30][40]
Ok
```
## Related to
`TROFF`
## Compatibility
MSX-BASIC 1.0 or higher
## Source
Retrieved from "https://www.msx.org/wiki/TRON"