maziac / DeZog

Visual Studio Code Debugger for Z80/ZX Spectrum.
MIT License
212 stars 35 forks source link

Testing the beta-13.3 #13

Closed mnunesvsc closed 4 years ago

mnunesvsc commented 4 years ago

Tried to start the debugger, but the .tap not load, so i did the instructions, and the debugger paused, but this happened

image

Version etc. (please complete the following information):

Additional context .launch.json { // Verwendet IntelliSense zum Ermitteln möglicher Attribute. // Zeigen Sie auf vorhandene Attribute, um die zugehörigen Beschreibungen anzuzeigen. // Weitere Informationen finden Sie unter https://go.microsoft.com/fwlink/?linkid=830387 "version": "0.2.0", "configurations": [ { "type": "dezog", "request": "launch", "name": "Speccy Tron", "remoteType": "zrcp", "zrcp": { "hostname": "localhost", "port": 12000 },
"listFiles": [ { "path": "speccytron.c.lis", "sources": "speccytron.c.lis", "useFiles": true, "asm": "z88dk", "mainFile": "speccytron.c", "srcDirs": [], "addOffset": 32768 } ], "startAutomatically": false, "skipInterrupt": true, "commandsAfterLaunch": [ //"-sprites", //"-patterns" ], "disassemblerArgs": { "esxdosRst": true }, "rootFolder": "${workspaceFolder}", "load": "speccytron5.tap", // "load": "4.Z80", "smallValuesMaximum": 512, "tmpDir": ".tmp" }, { "type": "dezog", "request": "launch", "name": "efd", "remoteType": "zrcp", "zrcp": { "hostname": "localhost", "port": 12000 },
"listFiles": [ { "path": "efd.c.lis", "sources": "efd.c.lis", "useFiles": true, "asm": "z88dk", "mainFile": "efd.c", "srcDirs": [], "addOffset": 32768 } ], "startAutomatically": false, "skipInterrupt": true, "commandsAfterLaunch": [ //"-sprites", //"-patterns" ], "disassemblerArgs": { "esxdosRst": true }, "rootFolder": "${workspaceFolder}", "load": "efd.tap", "smallValuesMaximum": 512, "tmpDir": ".tmp" }, ] }

maziac commented 4 years ago

The v0.13.3 was a test release to hunt down the zesarux crash problem. It has side-effects. You can try out the 0.13.4 https://github.com/maziac/DeZog/releases/tag/v0.13.4 . It has automatic loading enabled again.