SASM
SASM copied to clipboard
Debugger not working on Windows 11
The debugger doesn't seem to be working on Windows 11.
With this code:
%include "io.inc"
section .text
global CMAIN
CMAIN:
mov ebp, esp; for correct debugging
;write your code here
GET_UDEC 4, ebx
PRINT_UDEC 4, ebx
xor eax, eax
ret
I get the following error when launching the debugger (executing works fine):
[07:24:02] Build started...
[07:24:02] Built successfully.
[07:24:02] Debugging started...
unknown register: 00x004013ed
Windows version: Windows 11 Éducation SASM version: 3.12.2
It’s also not working on my Commodore 64.
On Mar 18, 2022, at 6:44 AM, Sébastien Strebelle @.***> wrote:
The debugger doesn't seem to be working on Windows 11.
With this code:
%include "io.inc"
section .text global CMAIN CMAIN:
mov ebp, esp; for correct debugging
;write your code here GET_UDEC 4, ebx PRINT_UDEC 4, ebx
xor eax, eax ret I get the following error when launching the debugger (executing works fine):
[07:24:02] Build started... [07:24:02] Built successfully. [07:24:02] Debugging started... unknown register: 00x004013ed Windows version: Windows 11 Éducation SASM version: 3.12.2
— Reply to this email directly, view it on GitHub, or unsubscribe. Triage notifications on the go with GitHub Mobile for iOS or Android. You are receiving this because you are subscribed to this thread.
Fixed in SASM version 3.13.2. Thank you!