Project

General

Profile

A1200 Config » History » Version 1

admin, 06/04/2026 10:08 PM

1 1 admin
# A1200 Config
2
3
- in launch.json definieren
4
``` javascript
5
{
6
    "version": "0.2.0",
7
    "configurations": [
8
        {
9
            "type": "amiga",
10
            "request": "launch",
11
            "preLaunchTask": "compile",
12
            "name": "Amiga 500",
13
            "config": "A500",
14
            "program": "${workspaceFolder}/a.mingw",
15
            "kickstart": "c:/amiga/KICK13.rom",
16
            "internalConsoleOptions": "openOnSessionStart"
17
        }, 
18
        {
19
             "type": "amiga",
20
             "request": "launch",
21
             "preLaunchTask": "compile",
22
             "name": "Amiga 1200",
23
             "config": "A1200",
24
             "program": "${workspaceFolder}/a.mingw",
25
             "kickstart": "c:/amiga/KICK31.rom",
26
             "internalConsoleOptions": "openOnSessionStart"
27
         }
28
    ]
29
}
30
```
31
32
Dann kann man das in Run & Debug (linkes Seitenmenü oder CTRL-Shift-D) per Dropdown auswählen.