Skip to content

v1.1.5

Choose a tag to compare

@nataliapc nataliapc released this 23 Jun 22:11
· 97 commits to main since this release
  • Minor bugfixes and improvements
  • Supports OPENMSX_REPLAYS_DIR env for custom user replays folder.
  • Adds BASIC tools to facilitate BASIC programming:

newProgram: clears the current BASIC program.
setProgram <program>: sets/updates the current BASIC program to the specified program string.
runProgram: runs the current BASIC program.
getFullProgram: returns the current BASIC program as a plain text string.
getFullProgramAdvanced: returns the current BASIC program with the ram address where each line is coded.
listProgramLines <startLine> [endLine]: lists at the emulator screen the selected range lines of the current BASIC program.
deleteProgramLines <startLine> [endline]: deletes a specific line range from the current BASIC program, if endline is not specified, only the startLine is deleted.