Skip to content

Commit 058209e

Browse files
committed
Switched IDE to vscode
1 parent 6321371 commit 058209e

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

.vscode/launch.json

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"type": "java",
9+
"name": "Launch Current File",
10+
"request": "launch",
11+
"mainClass": "${file}"
12+
},
13+
{
14+
"type": "java",
15+
"name": "Launch EaterEmulator",
16+
"request": "launch",
17+
"mainClass": "EaterEmulator",
18+
"projectName": "Java-6502-Emulator"
19+
},
20+
{
21+
"type": "java",
22+
"name": "Launch LCD",
23+
"request": "launch",
24+
"mainClass": "LCD",
25+
"projectName": "Java-6502-Emulator"
26+
}
27+
]
28+
}

0 commit comments

Comments
 (0)