SASM icon indicating copy to clipboard operation
SASM copied to clipboard

Debugger not working on Windows 11

Open SebStreb opened this issue 3 years ago • 1 comments

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

SebStreb avatar Mar 18 '22 10:03 SebStreb

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.

piper4hire avatar Mar 18 '22 13:03 piper4hire

Fixed in SASM version 3.13.2. Thank you!

Dman95 avatar Feb 07 '23 21:02 Dman95