-
Notifications
You must be signed in to change notification settings - Fork 17
Running emulator
praingeard edited this page Oct 25, 2019
·
12 revisions
new in version 0.7.0
Install FS-UAE or at least get the binary file.
Follow this wiki page
The RUN configuration will start the emulator with a configuration.
The program must in set in the Statup-Sequence file if you want it to start with the emulator.
{
"version": "0.2.0",
"configurations": [
{
"type": "fs-uae-run",
"request": "launch",
"name": "LINUX Run",
"trace": false,
"buildWorkspace": true,
"emulator": "${workspaceFolder}/bin/debian9_x64/fs-uae",
"emulatorWorkingDir": ".",
"options": [
"--chip_memory=1024",
"--hard_drive_0=${workspaceFolder}/fs-uae/hd0",
"--joystick_port_1=none",
"--amiga_model=A1200",
"--slow_memory=1792",
"--remote_debugger=200",
"--use_remote_debugger=true",
"--automatic_input_grab=0"
]
}
]
}
option | description |
---|---|
type | 'fs-uae-run' for the fs-uae emulator |
request | type of debugging method must be 'launch' |
name | Name of the configuration |
trace | If true logs will be added to the output console |
emulatorWorkingDir | Working dir for the emulator run |
buildWorkspace | If true the workspace will be built before the run |
emulator | File (with path) to the emulator binary |
options | Options to send to the emulator (see fs-uae options) |