Search found 67 matches

by vitsoft
12 Aug 2026 14:35
Forum: Bug reports
Topic: E6914 File "viewdasm.htm" not found.
Replies: 4
Views: 75

Re: E6914 File "viewdasm.htm" not found.

This happens because the tags and content are placed on the same line, for example:
</dd></dl><pre>DIS STRUC
Not by me . All tags <pre> are always followed by CR+LF in all my sources (they are the last element on the line). It seems that swallowing newline after tag <pre> is a nifty quirk in ...
by vitsoft
11 Aug 2026 16:45
Forum: Bug reports
Topic: E6914 File "viewdasm.htm" not found.
Replies: 4
Views: 75

Re: E6914 File "viewdasm.htm" not found.

and then euroview.exe simply crashed in attempt to view binary file.
I should not crash with euroview.exe unzipped from https://euroassembler.eu/download/eurotool.zip
It has nominal file date=2026-07-27, size=207298, MD5=742795859962AE3487A8B56EF8071155
and it works e.g. when applied on itself ...
by vitsoft
28 Jul 2026 11:27
Forum: This phpBB forum
Topic: phpBB updated
Replies: 4
Views: 266868

Re: phpBB updated

phpBB was updated to version 3.3.17 today
by vitsoft
28 Jul 2026 07:44
Forum: New releases
Topic: Version 20260727
Replies: 0
Views: 852

Version 20260727

Release date: 2026 Jul 27
TimeStamp: 1785110400
File size: 7011067
File hash MD5: 4897944B138C5D544FE9B620B421292F

What's new: New features and bugs of 20251110 fixed in 20260727
Added new Intel AES instructions AESENC128KL, AESDEC128KL, AESENC256KL, AESDEC256KL, AESENCWIDE128KL, AESDECWIDE128KL ...
by vitsoft
01 Jun 2026 17:42
Forum: This phpBB forum
Topic: phpBB updated
Replies: 4
Views: 266868

Re: phpBB updated

phpBB was updated to version 3.3.16 today. Visual style was set to the default silverscreen.
by vitsoft
22 Jan 2026 12:25
Forum: Wish list
Topic: Autoincrement/decrement Addressing Modes
Replies: 4
Views: 29600

Re: Autoincrement/decrement Addressing Modes

For example, if I change the unaligned move VMOVDQU to the aligned VMOVDQA, I will need another pair of macros.
You won't when keyword operand is employed:

MyVMOVDQ %MACRO DestYMM, SourceAddr, A=U
vmovdq%A %DestYMM, [%SourceAddr]
ADD %SourceAddr, 32
%ENDMACRO MyVMOVDQ

You will then write ...
by vitsoft
20 Jan 2026 19:38
Forum: Wish list
Topic: Autoincrement/decrement Addressing Modes
Replies: 4
Views: 29600

Re: Autoincrement/decrement Addressing Modes

Table 5‑3 shows that this works with any operation, such as `OPR R, (R)+`.
Perhaps you could add similar “syntax sugar” to your assembler as well?
I'm afraid postfix/prefix autoincrement contradict with the syntax of assemblers. Plus and Minus signs are reserved for addition and subtraction.
The ...
by vitsoft
10 Nov 2025 17:29
Forum: New releases
Topic: Version 20251110
Replies: 0
Views: 33294

Version 20251110

Release date: 2025 Nov 10
TimeStamp: 1762732800
File size: 7050396
File hash MD5: 5C2C8971A440661D3087533F76E40396
What's new:
A new program option MaxErrors= which limits the number of displayed warning and error messages with severity code above 3.
New machine instructions VPOPCNTB, VPOPCNTW ...
by vitsoft
05 Nov 2025 13:19
Forum: This phpBB forum
Topic: phpBB updated
Replies: 4
Views: 266868

Re: phpBB updated

phpBB was updated to version 3.3.15 today.
by vitsoft
26 Oct 2025 20:41
Forum: Questions and answers
Topic: How to get RVA in EuroAssembler?
Replies: 8
Views: 84001

Re: How to get RVA in EuroAssembler?

I managed to add the new attribute RVA# into €ASM, it will be incorporated in the next release.
Although the relative address is 64 bits wide, RVA# makes it fit to DWORD variables (32 bits),
so it is useful only for SEH in 64-bit Windows. At least your example works and writes
Hello, SEH ...