prb28

Results 138 comments of prb28

New integration of fs-uae should resolve this bug.

First... thanks ! I’m always happy to see it’s useful. This issue might be related to this one: https://github.com/prb28/vscode-amiga-assembly/issues/81#issuecomment-524666451. It might be a missing call before the debug command to...

Partial fix: https://github.com/prb28/fs-uae/commit/7b878537f9ba4d8135355a7c9192a4964f350789

Partial fix build in the binaries : https://github.com/prb28/vscode-amiga-wks-example/releases/tag/0.19-1

new integration of fs-uae should fix this issue.

Looks like a good way to do it, but I'm not sure that it is a common way to organize/use labels. It may be more suitable to detect the subroutines...

I agree to fold subroutines inside the main label is interesting. The question is : is it a common way to name a subroutine stating with a ".", and the...

Maybe something configurable with regexp, like: - main section start regexp: "^[A-Za-z:\-_]+$" - sub section start regexp: "^\.[A-Za-z:\-_]+.*$" - sub section end regexp or new sub section found: "^\s*rts\s*$" -...

In you case that would be: - main section start regexp: "^;region .*$" - main section end regexp or new main section found: "^;endregion .*$" With a test to deal...

This isn't a newbie question ;-)... The extension opens a file in amiga hunk format, extracts the different parts and calls capstone to disassemble. There is an option to do...