News:

Masm32 SDK description, downloads and other helpful links
Message to All Guests
NB: Posting URL's See here: Posted URL Change

Main Menu

JWASM: ERROR A2030: Instruction or register not accepted in current CPU mode

Started by bugthis, March 29, 2025, 07:32:16 PM

Previous topic - Next topic

_japheth

Quote from: bugthis on March 31, 2025, 02:06:28 PMIt would be a pity if you couldn't "bootstrap" the 16-bit Real Mode JWASM binary on a 16-bit x86 machine.

Hmm, but there's no wccr.exe on Open Watcom - that is, the 16-bit compiler must at least run on a 80386 machine, in protected-mode, with more than 1 MB RAM ( same is true for the linker ). So there's probably no chance for realization of your idea.
Dummheit, gepaart mit Dreistigkeit - eine furchtbare Macht.

bugthis

Quote from: _japheth on April 01, 2025, 12:09:10 PMHmm, but there's no wccr.exe on Open Watcom - that is, the 16-bit compiler must at least run on a 80386 machine, in protected-mode, with more than 1 MB RAM ( same is true for the linker ). So there's probably no chance for realization of your idea.
True. However, it should be possible to adapt the Makefile so that it also works on a filesystem without LFN support. This would at least allow JWASM to be compiled on 32 bit x86 computers running MS-DOS <= 6.22 without LFN support. Many people have MS-DOS installed on old retro computers because they already have a license and compatibility with DOS programs, especially Windows 3.1 in enhanced mode, is usually still better than FreeDOS. So it would be great if JWASM could be compiled on these computers.

bugthis

Quote from: _japheth on March 31, 2025, 01:31:48 PMNo, those makefiles all run fine in DOS, but need the HX DOS extender ( and the extender's HXLDR32 TSR loaded ).

I strongly doubt that. The Open Watcom Makefile looks in the BINNT directory for its compiler file WCC.EXE, but in DOS WCC.EXE is not in BINNT. The same applies for WLINK.EXE and WLIB.EXE.
See my point 1 in my previous comment.
https://masm32.com/board/index.php?topic=12667.msg137721#msg137721

These Open Watcom Makefiles may work in CMD from Windows 10 because in Windows 10, which belongs to WinNT series, you can find the compiler in the BINNT64 directory there, but definitely not in DOS.

See the attached files:
You cannot view this attachment.
You cannot view this attachment.
You cannot view this attachment.
You cannot view this attachment.

They show the output of tree or the output of searching for all EXE files in the Open Watcom compiler directory under Windows 10 and FreeDOS for comparison. The makefiles cannot work at all in DOS because the compiler is searched in the wrong location.

These are the lines with the error that point to binnt and what should be binw in ODDOS16.mak Makefile for DOS.
$ grep binnt OWDOS16.mak
LINK = $(WATCOM)\binnt\wlink.exe
CC=$(WATCOM)\binnt\wcc -q -0 -w3 -zc -ml -bc -bt=dos $(inc_dirs) $(extra_c_flags) -fo$@ -DFASTMEM=0 -DFASTPASS=0 -DCOFF_SUPPORT=0 -DELF_SUPPORT=0 -DAMD64_SUPPORT=0 -DSSSE3SUPP=0 -DSSE4SUPP=0 -DOWFC_SUPPORT=0 -DDLLIMPORT=0 -DAVXSUPP=0 -DPE_SUPPORT=0 -DVMXSUPP=0 -DSVMSUPP=0 -DCVOSUPP=0 -DCOMDATSUPP=0 -DSTACKBASESUPP=0 -zt=12000
        $(WATCOM)\binnt\wlib -q -n $(name).lib $(proj_obj:$(OUTD)/=+)


LFN might be an additional problem that prevents it from compiling, at least under MS-DOS <= 6.22 without LFN support.

And as for the HT DOS extender, OpenWatcom ships with DOS4G/W in FreeDOS as a DOS extender. It's located in the binw directory.

The error E14 has something to do with the path length.
Here's the output of wmake with my corrections made in comment #6. Without them, the compiler wouldn't even look in the correct directory.


_japheth

Quote from: bugthis on April 02, 2025, 05:15:56 PMI strongly doubt that. The Open Watcom Makefile looks in the BINNT directory for its compiler file WCC.EXE, but in DOS WCC.EXE is not in BINNT.

Well, you can install the BINNT tools in DOS - that's not forbidden and that's what's needed to create the Jwasm binaries (Windows and DOS). The tools in OW's BINW directory are to be avoided, simply because I don't want to test them and hence don't want to use them.

But you got a point with the MKDIR limitation in DOS - originally for JWasm there were just 2 output directories (Release and Debug), but this has been changed later and the Makefiles for DOS haven't been adjusted yet. Will be done.


QuoteLFN might be an additional problem that prevents it from compiling, at least under MS-DOS <= 6.22 without LFN support.

Perhaps. However, anyone who's indeed interested in that matter will be knowledgeable enough to fix those problems, if they exist - you're the best example. So nothing to be done on my part.
Dummheit, gepaart mit Dreistigkeit - eine furchtbare Macht.

bugthis

Quote from: _japheth on Today at 12:31:39 AMWell, you can install the BINNT tools in DOS - that's not forbidden and that's what's needed to create the Jwasm binaries (Windows and DOS).
This is not how the fdimples package is configured in FreeDOS for OpenWatcom, it is also not the location in the official Open Watcom package, see the Readme.txt below. It would bypass the package system and would therefore require additional work all the time when installing or uninstalling OpenWatcom in FreeDOS. And not just for me, but for all other users who want to build JWASM from source code with OpenWatcom under DOS.

QuoteThe tools in OW's BINW directory are to be avoided, simply because I don't want to test them and hence don't want to use them.
You could install FreeDOS in a Virtual Machine (Virtualbox/Qemu etc.). From there you can install OpenWatcom via the FreeDOS fdimples package system to have a test environment.
fdimples is FreeDOS package system and an easy to use GUI:
https://opensource.com/article/21/6/freedos-package-manager


From the readme.txt of OpenWatcom 1.9:
...
For proper operation the Open Watcom compilers require few environment
variables to be set up correctly. These variables differ slightly depending
on the host platform (DOS, OS/2, Win32). The common variables are:

 - PATH     - points to directories containing Open Watcom executables
...
DOS specifics

 - PATH      - only needs to point to the binw directory
 - WWINHELP  - points to the directory on the CDROM drive where help files
               are located. This minimizes hard disk space. Note this is not
               needed if the help files are installed on the hard disk

Win16 specifics

 - PATH      - only needs to point to the binw directory
 - WWINHELP  - points to the directory on the CDROM drive where help files
               are located. This minimizes hard disk space. Note this is not
               needed if the help files are installed on the hard disk

Win32 specifics

 - PATH      - must point to binnt and binw directories, in that order
 - WWINHELP  - points to the directory on the CDROM drive where help files
               are located. This minimizes hard disk space. Note this is not
               needed if the help files are installed on the hard disk
binnt directory is for Win32 only. It is not for DOS.
For DOS and Win16 binw is used.

See the attachment for the whole readme.txt
You cannot view this attachment.
It can be also found in the official OpenWatcom 1.9 package:
https://www.ibiblio.org/pub/micro/pc-stuff/freedos/files/devel/c/openwatcom/1.9/


You could also simply set a DOS target in the Makefile or use the Makefile to run an IF statement to check whether the system is running DOS and then execute a different branch.
The Makefile is also called OWDOS16.mak, so it should also be suitable for DOS. For Windows, there is OWWin32.mak available.
Especially since a Makefile for DOS is unlikely to change much, because MS-DOS is no longer a moving target.

QuoteBut you got a point with the MKDIR limitation in DOS - originally for JWasm there were just 2 output directories (Release and Debug), but this has been changed later and the Makefiles for DOS haven't been adjusted yet. Will be done.
Thanks

QuotePerhaps. However, anyone who's indeed interested in that matter will be knowledgeable enough to fix those problems, if they exist - you're the best example.
That's what i did and tried, but i said:
Quote from: bugthis on March 31, 2025, 12:14:24 PMUnfortunately, the argument list is still too long. I don't know how to fix this error. I'm not familiar enough with Watcom Makefiles and it could also be related to DOS and its maximum line length.
So I can't get any further here.

_japheth

Quote from: bugthis on Today at 01:35:25 AMUnfortunately, the argument list is still too long. I don't know how to fix this error. I'm not familiar enough with Watcom Makefiles and it could also be related to DOS and its maximum line length.
So I can't get any further here.

That's one of the reasone why I avoid the various Watcom DOS extenders - they have limitations that HX does NOT ( after all, it's my child, even more than JWasm  :biggrin: ). And I don't care much what FreeDOS or OW suggest - the quality of those advices and the quality of their documentations are "mixed".

Actually, the "DOS versions" of JWasm are just an add-on - originally, I just supplied a Win32 version - and used HX to run this binary in DOS.

Dummheit, gepaart mit Dreistigkeit - eine furchtbare Macht.

bugthis

Quote from: _japheth on Today at 03:40:04 AM
Quote from: bugthis on Today at 01:35:25 AMUnfortunately, the argument list is still too long. I don't know how to fix this error. I'm not familiar enough with Watcom Makefiles and it could also be related to DOS and its maximum line length.
So I can't get any further here.

That's one of the reasone why I avoid the various Watcom DOS extenders - they have limitations that HX does NOT ( after all, it's my child, even more than JWasm  :biggrin: ). And I don't care much what FreeDOS or OW suggest - the quality of those advices and the quality of their documentations are "mixed".

Actually, the "DOS versions" of JWasm are just an add-on - originally, I just supplied a Win32 version - and used HX to run this binary in DOS.
And what does the DOS Extender have to do with an argument list that is too long?

Wouldn't it be more likely that the command line length has something to do with COMMAND.COM and the memory size? I'll test tomorrow to see if changing the value using the /e:[Bytes] parameter helps.
And if that's the case, then it should also be possible to modify the wmake script so that it can handle the default length of the command line that is normal in DOS.

_japheth

Quote from: bugthis on Today at 05:55:30 AMAnd what does the DOS Extender have to do with an argument list that is too long?

Well, HX supports the CMDLINE environment variable, that overcomes the 126 byte cmdline limit of DOS. IIRC it was introduced with MS-DOS 7 (Win9x).
Dummheit, gepaart mit Dreistigkeit - eine furchtbare Macht.