Search found 6 matches

by AndreyDmitriev
22 Nov 2024 13:17
Forum: Bug reports
Topic: Exception on attempt to build DLL with align 16
Replies: 4
Views: 106225

Re: Exception on attempt to build DLL with align 16

Or do you want to remove it from the factory defaults ? I'm not sure about it. I wanted all Windows programs created by €ASM to look well when viewed in Explorer, instead of ugly default icon. Yes, exactly, I mean factory defaults for "cold start". So, if I downloaded new version, then do...
by AndreyDmitriev
22 Nov 2024 11:00
Forum: Bug reports
Topic: Exception on attempt to build DLL with align 16
Replies: 4
Views: 106225

Re: Exception on attempt to build DLL with align 16

I have to praise you, Andrey, for the perfect minimal verificable example. You're welcome and thank you! If I do like this then it works: EUROASM CPU=X64 TestDLL PROGRAM FORMAT=DLL, MODEL=FLAT, WIDTH=64 EXPORT foo foo PROC RET ENDP foo align 16 EXPORT bar bar PROC RET ENDP bar ENDPROGRAM TestDLL It...
by AndreyDmitriev
21 Nov 2024 22:40
Forum: Bug reports
Topic: Exception on attempt to build DLL with align 16
Replies: 4
Views: 106225

Exception on attempt to build DLL with align 16

Hi, vitsoft! It seems to be an issue in the latest Version 20240831. Minimal code to reproduce: TestDLL.asm: EUROASM CPU=X64 TestDLL PROGRAM FORMAT=DLL, MODEL=FLAT, WIDTH=64, ICONFILE= align 16 EXPORT foo foo PROC RET ENDP foo ENDPROGRAM TestDLL Attempt to build it as >euroasm.exe TestDLL.asm caused...
by AndreyDmitriev
17 Nov 2024 20:06
Forum: Questions and answers
Topic: Warning 2461: Why Immediate value (*) should not exceed 7 raised for shufps?
Replies: 1
Views: 67779

Warning 2461: Why Immediate value (*) should not exceed 7 raised for shufps?

Hi! Strange warning appear in attempt to use shufps: |000000E4:66490F6ED8 | movq xmm3, r8 |000000E9:66480F6EE0 | movq xmm4, rax |000000EE:0FC6DC11 | shufps xmm3,xmm4,00010001b |## W2461 Immediate value (17) should not exceed 7. |000000F2: | In my humble understanding such mask is valid for shufps an...
by AndreyDmitriev
06 Jun 2023 08:33
Forum: Questions and answers
Topic: MASM Macros to EuroAssembler
Replies: 3
Views: 107677

Re: MASM Macros to EuroAssembler

Wow, thank you so much, Pavel, it works after some minor changes like vmovdqa xmm0, xmmword ptr [rdx] > vmovdqa xmm0, [rdx] and Uint8ToFloat real4 255.0, 255.0, 255.0, 255.0 > Uint8ToFloat: DD 255.0, 255.0, 255.0, 255.0 (tried Uint8ToFloat: DO..., but euroasm told me that the Oword memory variable c...
by AndreyDmitriev
01 Jun 2023 09:30
Forum: Questions and answers
Topic: MASM Macros to EuroAssembler
Replies: 3
Views: 107677

MASM Macros to EuroAssembler

Hello! Currently I learning asm with AVX and lost a little bit with Macros. Especially with this one: https://github.com/Apress/modern-x86-assembly-language-programming-2e/blob/master/Chapter07/Ch07_Include/MacrosX86-64-AVX.asmh (used in this example https://github.com/Apress/modern-x86-assembly-lan...