prb28

Results 130 comments of prb28

@ouya99 ,sorry for the delay, I've missed your question. This project is intended to be a example, not a complete sdk ready for work. So yes there are libs missing,...

Sorry for the delay on this issue. I just forgot it.... I create a new issue on the main project.

The build looks failed, does the program file exists ?

This workspace is intended to be used like this : https://github.com/prb28/vscode-amiga-assembly/wiki/Getting-started#example-workspace Here is a tutorial : https://www.youtube.com/watch?v=x7OH7HIF5NQ&t=7689s Be careful to activate the long paths on windows: https://github.com/prb28/vscode-amiga-assembly/wiki/FAQ#the-emulator-starts-but-it-does-not-boot Maybe I've a...

Hi, I'm the coder of the vscode [amiga assembly extension](https://github.com/prb28/vscode-amiga-assembly). I stumbled in your link to the FS-UAE issue. As you guessed there are two parts for the GDB debuging:...

In the vscode extension the most important files for debugging are the socket communication proxy: https://github.com/prb28/vscode-amiga-assembly/blob/master/src/gdbProxy.ts (some parsing modifications must be done for registers, breakpoints, etc.) and the vscode interface:...

For the vscode interface there is the Language server protocol: https://microsoft.github.io/language-server-protocol/ , https://code.visualstudio.com/api/language-extensions/language-server-extension-guide. It may spare some electron development. At the time, there was already an effort to implement the...