Initial commit
This commit is contained in:
commit
ee4762673a
14 changed files with 410 additions and 0 deletions
13
run_dosbox.ps1
Normal file
13
run_dosbox.ps1
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
#!/usr/bin/env pwsh
|
||||
|
||||
. ".\common.ps1"
|
||||
|
||||
$dosbox_x = $env:DOSBOX_X_EXE ?? "C:/DOSBox-X/dosbox-x.exe"
|
||||
$cpu = $env:DOSBOX_X_CPU ?? "pentium_ii"
|
||||
|
||||
RunProgram -program $dosbox_x -arguments "-nopromptfolder",
|
||||
"-fastlaunch",
|
||||
"-set", "`"cputype=$cpu`"",
|
||||
"-c", "`"MOUNT C $(Resolve-Path "./lovedos/") `"",
|
||||
"-c", "`"MOUNT D $pwd `"",
|
||||
"-c", "`"c:\love.exe d:\game `""
|
||||
Loading…
Add table
Add a link
Reference in a new issue