Another missing system
Posted: Mon Jul 14, 2014 9:27 am
Sharp X68000
http://fr.wikipedia.org/wiki/Sharp_X68000
For the moment I m using XM6 as emulator. I need to update the script to load more than 1 disk, but this one is working.
Another emulator Winx68, But I prefer XM6.
Like usual I still need the icon ^^
Just for info, it miss atari 5200 system too.
http://fr.wikipedia.org/wiki/Sharp_X68000
For the moment I m using XM6 as emulator. I need to update the script to load more than 1 disk, but this one is working.
Code: Select all
Opt("WinTitleMatchMode", 1)
;Parsing
Local $count = StringInStr($CmdLineRaw, ".exe", 0 , 1, 1)
local $app = StringLeft ( $CmdLineRaw, $count + 4 )
local $command = StringTrimLeft( $CmdLineRaw, $count + 4 )
if not $command then exit 0
hotkeyset("{esc}", "Terminate")
local $PID = Run ( '"' & $app & '" ' & $command )
;set fullscreen
Sleep(500)
Send("!{Enter}")
While ProcessExists ( $PID )
Sleep(500)
WEnd
exit 0
;functions
Func Terminate()
Winclose("XM6")
Exit 0
EndFunc
Like usual I still need the icon ^^
Just for info, it miss atari 5200 system too.