Pelles C forum

Pelles C => Bug reports => Topic started by: Vortex on March 23, 2026, 09:03:13 PM

Title: TEXTEQU statement freezing Poasm
Post by: Vortex on March 23, 2026, 09:03:13 PM
Hi Pelle,

This code portion below is freezing Poasm Version 14.00.00 :

.386
.model flat,stdcall
option casemap:none

ExitProcess PROTO :DWORD
MessageBoxA TEXTEQU <MessageBoxA>

.code

start:

    invoke  MessageBoxA,0,0,0,0
    invoke  ExitProcess,0

END start

MessageBoxA TEXTEQU <MessageBoxA> is not meaningful but this should not lock the assembler.