vid512

Results 32 comments of vid512

Could this be some recent regression? win.asm: ``` end ``` Causes: ``` c:\dev\_tools\uasm-2.56\UASM\bin>uasm64 -win64 win.asm -Fl win.lst UASM v2.56, Oct 11 2022, Masm-compatible assembler. Portions Copyright (c) 1992-2002 Sybase, Inc....

Also, it would make sense to disallow addressing like `[rip + label + 2*rax]`. At the moment, this is same as `[label + 2*rax]`, eg. standard `base+scale*index+displacement` addressing, with COFF...

Now I understand what was happening. I must have had win.lst preexisting from previous (correct) command, and then I wrongly assumed /Fl takes operand in a getopt-y way (with space...

I have used simple generators (FixedValuesGenerator?) to a limited degree in some of my code, like this: ``` int param1 = GENERATE(0, 1, 50, 99, 100); int param2 = GENERATE(0x10,...

Correct. CMake configuration works correctly when run from VS developer shell, or after running "vcvarsall.bat x64" manually.

I use 64 bit linker: ``` Microsoft (R) Incremental Linker Version 14.38.33130.0 Copyright (C) Microsoft Corporation. All rights reserved. ``` With /Zi8, the problem disappears on the particular minimal example...

I don't have the example with larger codebase anymore, nor do I remember how I tested it. So, I think you can close this issue for the moment.

The wrapDB is also useful as a packaging system for people building with meson, not just for packages that require patch. See: https://mesonbuild.com/Adding-new-projects-to-wrapdb.html > Wraps with Meson build definition patches...

About the names. GTK uses names "display line" for wrapped lines (https://developer.gnome.org/gtk3/stable/GtkTextView.html#gtk-text-view-forward-display-line). That's completely unambigous, and IMO a very good name. Question is, how to call the other one then....

Same problem. Combination of directory name starting with underscore + some characters (t, b, ...) anywhere in path seems to trigger this. Also `D:\some-dir\_t\somedir`, `D:\a\_test\b`, etc. However, I couldn't replicate...