A KC85 Assembly IDE for Visual Studio Code
NOTE: WIP, do not use yet!
Preliminary Instructions
NOTE: always install the pre-release version! This way the required ms-vscode.wasm-wasi-core
dependency will install automatically.
start by opening VSCode in a folder with a file kcide.project.json looking like this:
{
"emulator": {
"system": "KC85/4"
},
"assembler": {
"srcDir": "src",
"mainSourceFile": "main.asm",
"cpu": "Z80",
"outDir": "build",
"outBaseFilename": "hello",
"outFiletype": "KCC"
}
}
create a directory src and in it, a file main.asm :
ld a,5
ld b,6
add a,b
ret
run the palette command KCIDE: Debug (Ctrl/Cmd + Shift + P => KCIDE: Debug)
syntax highlighting support based on https://github.com/mborik/z80-macroasm-vscode/blob/main/syntaxes/z80-macroasm.tmLanguage.json
| |