News:

Masm32 SDK description, downloads and other helpful links
Message to All Guests

Main Menu

UASM32 .while

Started by HSE, November 08, 2019, 11:07:55 AM

Previous topic - Next topic

HSE

Sorry. An algorithm's problem, nothing to do with UASM, Erase the thing. Thanks
Equations in Assembly: SmplMath

jj2007

What exactly is the problem? To me, it looks correct :rolleyes:

  int 3
  .While sdword ptr eax != sdword ptr x2
mov eax, x2
  .Endw

004010A4    ³.  CC                 int3
004010A5    ³. EB 05              jmp short C0005
C0004       ³>  A1 00804000        Úmov eax, [x2]
C0005       ³>  3B05 00804000      +cmp eax, [x2]
004010B2    ³. 75 F3              Àjne short C0004

HSE

Equations in Assembly: SmplMath