This is the 1st release that connects to AgonLight with the ZDI interface.
Pre-requisites:
- Connect the cheap 2-wire ZDI interface as described here: https://github.com/S0urceror/AgonElectronHAL
- Install a ZDI compatible OS on the ESP32 with the Arduino IDE. I have a compatible Agon-VDP here: https://github.com/S0urceror/agon-vdp
- Install the VSIX file in Visual Studio Code
- Create a suitable launch.json like this:
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "dezog",
"request": "launch",
"name": "Dezog-MOS-BBC",
"rootFolder": "${workspaceFolder}/machines/msx",
"remoteType": "agonelectronhal",
"agonelectronhal": {
"serial":"/dev/tty.usbserial-211240",
"baudrate": 460800
},
"sjasmplus": [
{
"path": "helloworld.sld",
}
],
"startAutomatically": false,
"loadObjs": [
],
"topOfStack": "0xffff",
"commandsAfterLaunch": [
"-exec e load bbc/bbcbasic.bin"
],
"preLaunchTask": "build"
}
]
}
Happy Dezogging on Agon.