mirror of
https://github.com/gbowne1/ClassicOS.git
synced 2024-11-22 06:06:52 -08:00
25 lines
457 B
JSON
25 lines
457 B
JSON
|
{
|
||
|
"version": "2.0.0",
|
||
|
"tasks": [
|
||
|
{
|
||
|
"label": "Build",
|
||
|
"type": "shell",
|
||
|
"command": "nasm -f elf32 -o main.o main.asm && gcc -m32 -o main main.o",
|
||
|
"group": {
|
||
|
"kind": "build",
|
||
|
"isDefault": true
|
||
|
},
|
||
|
"problemMatcher": []
|
||
|
},
|
||
|
{
|
||
|
"label": "Run",
|
||
|
"type": "shell",
|
||
|
"command": "qemu-system-i386 -kernel main",
|
||
|
"group": {
|
||
|
"kind": "test",
|
||
|
"isDefault": true
|
||
|
},
|
||
|
"problemMatcher": []
|
||
|
}
|
||
|
]
|
||
|
}
|