Search found 9 matches
- 26 Sep 2025 04:25
- Forum: Questions and answers
- Topic: Alignment greater than 16 - how to set without warnings?
- Replies: 2
- Views: 11744
Re: Alignment greater than 16 - how to set without warnings?
Thank you very much, this is exactly what I needed. I had already tried explicit declaration of the sections, but I used the wrong syntax and was not aware of auto segmentation. Now I understand how it should be and it works.
- 24 Sep 2025 19:12
- Forum: Questions and answers
- Topic: Alignment greater than 16 - how to set without warnings?
- Replies: 2
- Views: 11744
Alignment greater than 16 - how to set without warnings?
If I try to set an alignment greater than 16 for some reason, the following warnings are issued: W3410 Requested alignment 4096 is greater then alignment 16 of section [.bss]. "addresses.asm"{10} W3410 Requested alignment 64 is greater then alignment 16 of section [.text]. "addresses....
- 24 Sep 2025 18:12
- Forum: Wish list
- Topic: VPOPCNT is not present - please add it
- Replies: 1
- Views: 8773
VPOPCNT is not present - please add it
Hi Pavel,
it seems to be like VPOPCNT (VPOPCNTB, VPOPCNTW, VPOPCNTD, VPOPCNTQ) is not implemented yet, please consider to add it to the next release if you will have time.
https://www.felixcloutier.com/x86/vpopcnt
Thank you in advance,
Andrey.
it seems to be like VPOPCNT (VPOPCNTB, VPOPCNTW, VPOPCNTD, VPOPCNTQ) is not implemented yet, please consider to add it to the next release if you will have time.
https://www.felixcloutier.com/x86/vpopcnt
Thank you in advance,
Andrey.
- 22 Nov 2024 13:17
- Forum: Bug reports
- Topic: Exception on attempt to build DLL with align 16
- Replies: 4
- Views: 300653
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...
- 22 Nov 2024 11:00
- Forum: Bug reports
- Topic: Exception on attempt to build DLL with align 16
- Replies: 4
- Views: 300653
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...
- 21 Nov 2024 22:40
- Forum: Bug reports
- Topic: Exception on attempt to build DLL with align 16
- Replies: 4
- Views: 300653
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...
- 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: 169412
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...
- 06 Jun 2023 08:33
- Forum: Questions and answers
- Topic: MASM Macros to EuroAssembler
- Replies: 3
- Views: 179241
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...
- 01 Jun 2023 09:30
- Forum: Questions and answers
- Topic: MASM Macros to EuroAssembler
- Replies: 3
- Views: 179241
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...