E. C. Masloch

Results 258 comments of E. C. Masloch

I finished the port of all SvarDOS specifics of both drbio and drdos to NASM. I did port the version.inc but renamed as svarver.inc / svarver.mac. (Must be copied into...

Oops, specifying `-DSINGLEFILE=1 -DSVARDOS=0` does assemble the DOS loader even though it is never called. I will fix this at a later point.

I meant `-DSINGLEFILE=0 -DSVARDOS=0`. Truthiness sense is hard!

Further note: The lDOS init1 still contains a copy of a lot of what moved into init0 for SvarDOS, which isn't ideal either. (lDOS doesn't have an init0 but rather...

Good, okay. Side question: Do you know how to pass a quoted string with blanks as a define to JWasm's command line, in DOS? Whatever I tried it seemed to...

NASM in DOS (FreeCOM) does allow blanks as in `nasm test.asm -DFOO="bar baz quux"` (define as not quoted text) or `nasm test.asm -DFOO="'bar baz quux'"` (define as quoted string). Exactly...

> Isn't this left to the application, as the command line tail is copied more or less unaltered to the PSP / CMDLINE env? Apart from using quotes to specify...

I added the lCFG block as an option [for lDOS drkernpl](https://hg.pushbx.org/ecm/ldosboot/rev/439448ca4188), which also supports [passing through the uncompressed lCFG block from inicomp](https://hg.pushbx.org/ecm/inicomp/rev/2a52e5b5156e) if the kernel is compressed. The drkernpl to...

Thanks, it worked for me (FreeCOM in dosemu2) somehow but I will upload a patch to fix this later. I detected the offending lines using `perl -ne 'if (length ($_)...

> What is this c:\autowat.bat file referenced in cfg.bat? Has it to do with Open Watcom? Yes, it contains the lines that OW DOS installer adds to autoexec.bat > Can...