Skip to content

Commit

Permalink
feat(win): Debug fixed on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
prb28 committed Aug 8, 2018
1 parent 899af7a commit dadd429
Show file tree
Hide file tree
Showing 3 changed files with 67 additions and 0 deletions.
41 changes: 41 additions & 0 deletions .vscode/launch-windows_x64.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
{
"version": "0.2.0",
"configurations": [
{
"type": "fs-uae-run",
"request": "launch",
"name": "Run",
"buildWorkspace": true,
"emulator": "${workspaceFolder}\\bin\\windows_x64\\fs-uae.exe",
"options": [
"--chip_memory=1024",
"--hard_drive_0=${workspaceFolder}\\fs-uae\\hd0",
"--joystick_port_1=none",
"--amiga_model=A1200",
"--slow_memory=1792"
]
},
{
"type": "fs-uae",
"request": "launch",
"name": "Debug",
"stopOnEntry": true,
"serverName": "localhost",
"serverPort": 6860,
"trace": false,
"startEmulator": true,
"buildWorkspace": true,
"emulator": "${workspaceFolder}\\bin\\windows_x64\\fs-uae.exe",
"program": "${workspaceFolder}\\fs-uae\\hd0\\gencop",
"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"
]
}
]
}
26 changes: 26 additions & 0 deletions .vscode/settings-windows_x64.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{
//"[m68k]": {
// "files.encoding": "iso88591"
//},
"amiga-assembly.cstool": "bin\\windows_x64\\cstool.exe",
"amiga-assembly.vasm": {
"enabled": true,
"file": "bin\\windows_x64\\vasmm68k_mot.exe",
"options": [
"-m68000",
"-Fhunk",
"-linedebug"
]
},
"amiga-assembly.vlink": {
"enabled": true,
"file": "bin\\windows_x64\\vlink.exe",
"includes": "*.s",
"excludes": "",
"exefilename": "..\\fs-uae\\hd0\\gencop",
"options": [
"-bamigahunk",
"-Bstatic"
]
}
}
Binary file modified amiga-assembly-0.7.0.vsix
Binary file not shown.

0 comments on commit dadd429

Please sign in to comment.