使用VB.NET中指定的仿真器运行Rom

时间:2015-03-16 03:15:36

标签: vb.net

我正在为VB.NET中的模拟器编写一个rom启动器。目前我可以让它启动模拟器,但所选的ROM不会加载它。我的代码如下......

Process.Start("C:\Users\SighFye\Documents\zsnesw151\zsnesw.exe", "shell32.dll, OpenAs_RunDLL " & "C:\RetroGames\nintendo\Super Nintendo\AlienvsPredator\AlienvsPredator.smc")

如何在启动模拟器时运行ROM。

1 个答案:

答案 0 :(得分:0)

我发现了问题。 rom的路径中有空格,所以我需要在字符串中加上引号

Process.Start("C:\Users\SighFye\Documents\zsnesw151\zsnesw.exe", "shell32.dll, OpenAs_RunDLL " & """C:\RetroGames\nintendo\Super Nintendo\AlienvsPredator\AlienvsPredator.smc""")