msxbuild/lib/openmsx/share/scripts/boot_exec.tcl
Willem Cazander 94f532ffa9
All checks were successful
Run test asserts / Test-Asserts (push) Successful in -9s
Moved normal exit to headless control script.
2024-06-30 13:56:18 +02:00

25 lines
528 B
Tcl

# boot_exec -- Helper command to autoexec.bat boot scripts.
#
# Adds the following command to openMSX;
#
# 'boot_exec_color_dark'
# Sets the VDP colors to dark color tones.
#
# 'boot_exec_config_info'
# Displays machine and openMSX version on one line.
#
proc boot_exec_color_dark {} {
setcolor 4 000
setcolor 15 777
return "Boot color dark"
}
proc boot_exec_config_info {} {
set result "Run machine "
append result [machine_info config_name]
append result " on "
append result [openmsx_info version]
return $result
}