Dman95 / SASM

SASM - simple crossplatform IDE for NASM, MASM, GAS and FASM assembly languages

Home Page:http://dman95.github.io/SASM/

Repository from Github https://github.comDman95/SASMRepository from Github https://github.comDman95/SASM

Debugger not working on Windows 11

SebStreb opened this issue · 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

Fixed in SASM version 3.13.2. Thank you!