Improved plug support and added plug result messages.
All checks were successful
Run test asserts / Test-Asserts (push) Successful in 2s

This commit is contained in:
Willem Cazander 2024-07-03 00:38:25 +02:00
parent ae4b97dbeb
commit f4197c1a14
3 changed files with 20 additions and 4 deletions

View file

@ -43,3 +43,13 @@ proc boot_exec_show_init {} {
append result [openmsx_info version]
return $result
}
proc boot_exec_plug_porta {{plug_dev}} {
plug joyporta $plug_dev
return "mb::plug porta $plug_dev"
}
proc boot_exec_plug_portb {{plug_dev}} {
plug joyportb $plug_dev
return "mb::plug portb $plug_dev"
}