Rocksolid Light

Welcome to novaBBS (click a section below)

mail  files  register  newsreader  groups  login

Message-ID:  

The biggest difference between time and space is that you can't reuse time. -- Merrick Furst


computers / alt.comp.os.windows-10 / Re: Can windows 64 "read" 16 bit data? -run -running

SubjectAuthor
* Can windows 64 "read" 16 bit data? -run -runningPaul in Houston TX
+* Re: Can windows 64 "read" 16 bit data? -run -runningNewyana2
|+* Re: Can windows 64 "read" 16 bit data? -run -runningPaul in Houston TX
||+* Re: Can windows 64 "read" 16 bit data? -run -runningAndy Burns
|||`* Re: Can windows 64 "read" 16 bit data? -run -runningPaul
||| `* Re: Can windows 64 "read" 16 bit data? -run -runningStan Brown
|||  +- Re: Can windows 64 "read" 16 bit data? -run -runningAndy Burns
|||  `- Re: Can windows 64 "read" 16 bit data? -run -runningNewyana2
||`* Re: Can windows 64 "read" 16 bit data? -run -runningPaul
|| +- Re: Can windows 64 "read" 16 bit data? -run -runningStan Brown
|| `- Re: Can windows 64 "read" 16 bit data? -run -runningAndy Burns
|`* Re: Can windows 64 "read" 16 bit data? -run -runningRoger Mills
| `* Re: Can windows 64 "read" 16 bit data? -run -runningMikeS
|  `* Re: Can windows 64 "read" 16 bit data? -run -runningPaul in Houston TX
|   `- Re: Can windows 64 "read" 16 bit data? -run -runningMikeS
`- Re: Can windows 64 "read" 16 bit data? -run -runningPaul in Houston TX

1
Can windows 64 "read" 16 bit data? -run -running

<uepn84$1dtmh$1@dont-email.me>

  copy mid

https://www.novabbs.com/computers/article-flat.php?id=73465&group=alt.comp.os.windows-10#73465

  copy link   Newsgroups: alt.comp.os.windows-10
Path: i2pn2.org!i2pn.org!eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: Pau...@Houston.Texas (Paul in Houston TX)
Newsgroups: alt.comp.os.windows-10
Subject: Can windows 64 "read" 16 bit data? -run -running
Date: Sun, 24 Sep 2023 11:13:54 -0500
Organization: A noiseless patient Spider
Lines: 5
Message-ID: <uepn84$1dtmh$1@dont-email.me>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
Injection-Date: Sun, 24 Sep 2023 16:13:56 -0000 (UTC)
Injection-Info: dont-email.me; posting-host="e16dbbf3a2af5eab4112fa9f399f0894";
logging-data="1504977"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX188DfGbLIPQJfdUABQ5rb1l"
User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:102.0) Gecko/20100101
Firefox/102.0 SeaMonkey/2.53.8
Cancel-Lock: sha1:NZUYuTsRqlYsT2f6kDMHiOylwUI=
X-Mozilla-News-Host: news://news.eternal-september.org:119
 by: Paul in Houston TX - Sun, 24 Sep 2023 16:13 UTC

Can windows 64 "read" 16 bit data? -run -running -convert

Google Duck does not know.

How about 8 bit?

Re: Can windows 64 "read" 16 bit data? -run -running

<uepokv$1e7pg$1@dont-email.me>

  copy mid

https://www.novabbs.com/computers/article-flat.php?id=73466&group=alt.comp.os.windows-10#73466

  copy link   Newsgroups: alt.comp.os.windows-10
Path: i2pn2.org!i2pn.org!eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: Newya...@invalid.nospam (Newyana2)
Newsgroups: alt.comp.os.windows-10
Subject: Re: Can windows 64 "read" 16 bit data? -run -running
Date: Sun, 24 Sep 2023 12:36:56 -0400
Organization: A noiseless patient Spider
Lines: 35
Message-ID: <uepokv$1e7pg$1@dont-email.me>
References: <uepn84$1dtmh$1@dont-email.me>
Injection-Date: Sun, 24 Sep 2023 16:37:51 -0000 (UTC)
Injection-Info: dont-email.me; posting-host="5c7d242e55af8624716b404cd5893183";
logging-data="1515312"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1902F8SCeBxUHCosdXOCnEstqWr8EwK0mY="
Cancel-Lock: sha1:zpl1v3tG45lrrkYqgEKrqUVwibs=
X-Priority: 3
X-Newsreader: Microsoft Outlook Express 6.00.2900.5512
X-MSMail-Priority: Normal
X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.5512
 by: Newyana2 - Sun, 24 Sep 2023 16:36 UTC

"Paul in Houston TX" <Paul@Houston.Texas> wrote

| Can windows 64 "read" 16 bit data? -run -running -convert
| | Google Duck does not know.
| | How about 8 bit?

Win64 can't run 16-bit executables. Reading data
is not limited. For example, a PNG file is 32-bit data.
A B/W BMP file is one-bit data. Data is data. The
context and/or file format determine how you read it.

With executables it's different. The file format is
different. Win64 can run a 32-bit executable because
it uses a go-between to translate, for the sake of
backward compatibility. If you look up PE format
(portable executable) you'll see it's very complex.
Different types will be different. A 32-bit EXE will be
dealing with 32-bit pointers and the format of the
file itself will be 32-bit.

For example, if you have a DLL and something wants
to use a function, it will walk 32-bit pointers in the
file header. X points to offset Y. Y points to offset Z.
Eventually it finds the function name and gets a pointer
to that offset. Then it runs the function by execuuting the
code at that offset in the DLL. A 64-bit DLL will be
similar, but based on 64-bit values. So it's gibberish for
32-bit software.

I don't understand what "-run -running -convert" means
but maybe I answered the question?

Re: Can windows 64 "read" 16 bit data? -run -running

<uepqeb$1eimp$1@dont-email.me>

  copy mid

https://www.novabbs.com/computers/article-flat.php?id=73468&group=alt.comp.os.windows-10#73468

  copy link   Newsgroups: alt.comp.os.windows-10
Path: i2pn2.org!i2pn.org!eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: Pau...@Houston.Texas (Paul in Houston TX)
Newsgroups: alt.comp.os.windows-10
Subject: Re: Can windows 64 "read" 16 bit data? -run -running
Date: Sun, 24 Sep 2023 12:08:24 -0500
Organization: A noiseless patient Spider
Lines: 40
Message-ID: <uepqeb$1eimp$1@dont-email.me>
References: <uepn84$1dtmh$1@dont-email.me> <uepokv$1e7pg$1@dont-email.me>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
Injection-Date: Sun, 24 Sep 2023 17:08:27 -0000 (UTC)
Injection-Info: dont-email.me; posting-host="e16dbbf3a2af5eab4112fa9f399f0894";
logging-data="1526489"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX183/m+MItWWsCE4cVBj52Wz"
User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:102.0) Gecko/20100101
Firefox/102.0 SeaMonkey/2.53.8
Cancel-Lock: sha1:qMonTFSAoKlUPC/mAPErp/mP7iM=
In-Reply-To: <uepokv$1e7pg$1@dont-email.me>
 by: Paul in Houston TX - Sun, 24 Sep 2023 17:08 UTC

Newyana2 wrote:
> "Paul in Houston TX" <Paul@Houston.Texas> wrote
>
> | Can windows 64 "read" 16 bit data? -run -running -convert
> |
> | Google Duck does not know.
> |
> | How about 8 bit?
>
> Win64 can't run 16-bit executables. Reading data
> is not limited. For example, a PNG file is 32-bit data.
> A B/W BMP file is one-bit data. Data is data. The
> context and/or file format determine how you read it.
>
> With executables it's different. The file format is
> different. Win64 can run a 32-bit executable because
> it uses a go-between to translate, for the sake of
> backward compatibility. If you look up PE format
> (portable executable) you'll see it's very complex.
> Different types will be different. A 32-bit EXE will be
> dealing with 32-bit pointers and the format of the
> file itself will be 32-bit.
>
> For example, if you have a DLL and something wants
> to use a function, it will walk 32-bit pointers in the
> file header. X points to offset Y. Y points to offset Z.
> Eventually it finds the function name and gets a pointer
> to that offset. Then it runs the function by execuuting the
> code at that offset in the DLL. A 64-bit DLL will be
> similar, but based on 64-bit values. So it's gibberish for
> 32-bit software.
>
> I don't understand what "-run -running -convert" means
> but maybe I answered the question?

Thank you, Newyana.
Sorry for the confusion. I copy / pasted my Google question and
included the boolean minuses so that Google would not return anything
related to run, running, and convert. It still works even though Google
says that boolean term no longer works. It still works with Ducky.

Re: Can windows 64 "read" 16 bit data? -run -running

<knba8jFmfujU2@mid.individual.net>

  copy mid

https://www.novabbs.com/computers/article-flat.php?id=73469&group=alt.comp.os.windows-10#73469

  copy link   Newsgroups: alt.comp.os.windows-10
Path: i2pn2.org!i2pn.org!usenet.goja.nl.eu.org!3.eu.feeder.erje.net!feeder.erje.net!newsreader4.netcologne.de!news.netcologne.de!fu-berlin.de!uni-berlin.de!individual.net!not-for-mail
From: use...@andyburns.uk (Andy Burns)
Newsgroups: alt.comp.os.windows-10
Subject: Re: Can windows 64 "read" 16 bit data? -run -running
Date: Sun, 24 Sep 2023 18:34:11 +0100
Lines: 10
Message-ID: <knba8jFmfujU2@mid.individual.net>
References: <uepn84$1dtmh$1@dont-email.me> <uepokv$1e7pg$1@dont-email.me>
<uepqeb$1eimp$1@dont-email.me>
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
X-Trace: individual.net o6b7b8xDAiONJYiEx2hbvQoY/qk/YUDmzkh2HU3K/2GzcMvpRN
Cancel-Lock: sha1:WwtoSWp/dbKXrGH01YiO9RSa/M0= sha256:57HTPeZgv+dLRhQaerCZq+iSRsuSl2GANwaTKe3weBg=
User-Agent: Mozilla Thunderbird
Content-Language: en-GB
In-Reply-To: <uepqeb$1eimp$1@dont-email.me>
 by: Andy Burns - Sun, 24 Sep 2023 17:34 UTC

Paul in Houston TX wrote:

> I copy / pasted my Google question and
> included the boolean minuses so that Google would not return anything
> related to run, running, and convert.  It still works even though Google
> says that boolean term no longer works.  It still works with Ducky.

minus still works (and I think they say so) but plus no longer works, it
returns results without the required term.

Re: Can windows 64 "read" 16 bit data? -run -running

<ueqear$1i1cg$2@dont-email.me>

  copy mid

https://www.novabbs.com/computers/article-flat.php?id=73472&group=alt.comp.os.windows-10#73472

  copy link   Newsgroups: alt.comp.os.windows-10
Path: i2pn2.org!i2pn.org!eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: nos...@needed.invalid (Paul)
Newsgroups: alt.comp.os.windows-10
Subject: Re: Can windows 64 "read" 16 bit data? -run -running
Date: Sun, 24 Sep 2023 18:47:55 -0400
Organization: A noiseless patient Spider
Lines: 19
Message-ID: <ueqear$1i1cg$2@dont-email.me>
References: <uepn84$1dtmh$1@dont-email.me> <uepokv$1e7pg$1@dont-email.me>
<uepqeb$1eimp$1@dont-email.me> <knba8jFmfujU2@mid.individual.net>
MIME-Version: 1.0
Content-Type: text/plain; charset=utf-8
Content-Transfer-Encoding: 8bit
Injection-Date: Sun, 24 Sep 2023 22:47:55 -0000 (UTC)
Injection-Info: dont-email.me; posting-host="7e9b9b501cafb48d4f4f9af83bcb631c";
logging-data="1639824"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1/A7v5xYyW/UuqMXs7KuBXmvEsm5faCmWk="
User-Agent: Ratcatcher/2.0.0.25 (Windows/20130802)
Cancel-Lock: sha1:msiGMmCEq9RWsf+NtYbwLfgzq0I=
Content-Language: en-US
In-Reply-To: <knba8jFmfujU2@mid.individual.net>
 by: Paul - Sun, 24 Sep 2023 22:47 UTC

On 9/24/2023 1:34 PM, Andy Burns wrote:
> Paul in Houston TX wrote:
>
>> I copy / pasted my Google question and included the boolean minuses so that Google would not return anything related to run, running, and convert.  It still works even though Google says that boolean term no longer works.  It still works with Ducky.
>
> minus still works (and I think they say so) but plus no longer works, it returns results without the required term.
>

Does using double quotes

smurf "father"

still work, to make "father" a mandatory term ?

I mean, the search sucks so bad sometimes, it's hard
to tell whether it's paying attention at all.

Paul

Re: Can windows 64 "read" 16 bit data? -run -running

<ueqfkl$1i8l5$1@dont-email.me>

  copy mid

https://www.novabbs.com/computers/article-flat.php?id=73473&group=alt.comp.os.windows-10#73473

  copy link   Newsgroups: alt.comp.os.windows-10
Path: i2pn2.org!i2pn.org!eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: nos...@needed.invalid (Paul)
Newsgroups: alt.comp.os.windows-10
Subject: Re: Can windows 64 "read" 16 bit data? -run -running
Date: Sun, 24 Sep 2023 19:10:11 -0400
Organization: A noiseless patient Spider
Lines: 94
Message-ID: <ueqfkl$1i8l5$1@dont-email.me>
References: <uepn84$1dtmh$1@dont-email.me> <uepokv$1e7pg$1@dont-email.me>
<uepqeb$1eimp$1@dont-email.me>
MIME-Version: 1.0
Content-Type: text/plain; charset=utf-8
Content-Transfer-Encoding: 8bit
Injection-Date: Sun, 24 Sep 2023 23:10:13 -0000 (UTC)
Injection-Info: dont-email.me; posting-host="7e9b9b501cafb48d4f4f9af83bcb631c";
logging-data="1647269"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1/4CvyR3+beIPu/DdTmSAgiB7w9onTmqvs="
User-Agent: Ratcatcher/2.0.0.25 (Windows/20130802)
Cancel-Lock: sha1:iGs42NeG5ycLk6z4X6uzZSDqo8g=
In-Reply-To: <uepqeb$1eimp$1@dont-email.me>
Content-Language: en-US
 by: Paul - Sun, 24 Sep 2023 23:10 UTC

On 9/24/2023 1:08 PM, Paul in Houston TX wrote:
> Newyana2 wrote:
>> "Paul in Houston TX" <Paul@Houston.Texas> wrote
>>
>> | Can windows 64 "read" 16 bit data? -run -running -convert
>> |
>> | Google Duck does not know.
>> |
>> | How about 8 bit?
>>
>>     Win64 can't run 16-bit executables. Reading data
>> is not limited. For example, a PNG file is 32-bit data.
>> A B/W BMP file is one-bit data. Data is data. The
>> context and/or file format determine how you read it.
>>
>>    With executables it's different. The file format is
>> different. Win64 can run a 32-bit executable because
>> it uses a go-between to translate, for the sake of
>> backward compatibility. If you look up PE format
>> (portable executable) you'll see it's very complex.
>> Different types will be different. A 32-bit EXE will be
>> dealing with 32-bit pointers and the format of the
>> file itself will be 32-bit.
>>
>>    For example, if you have a DLL and something wants
>> to use a function, it will walk 32-bit pointers in the
>> file header. X points to offset Y. Y points to offset Z.
>> Eventually it finds the function name and gets a pointer
>> to that offset. Then it runs the function by execuuting the
>> code at that offset in the DLL. A 64-bit DLL will be
>> similar, but based on 64-bit values. So it's gibberish for
>> 32-bit software.
>>
>>    I don't understand what "-run -running -convert" means
>> but maybe I answered the question?
>
> Thank you, Newyana.
> Sorry for the confusion.  I copy / pasted my Google question and included the boolean minuses so that Google would not return anything related to run, running, and convert.  It still works even though Google says that boolean term no longer works.  It still works with Ducky.

SysWOW (Windows On Windows), handles the multilib aspect
of Windows.

The OS might pretend to be native 64-bit and run on 64-bit hardware.

However, a user might want to run a 32-bit executable. There might
be some DLLs suitable for this, stored somewhere. For example, you
might catch yourself installing Visual Studio files, both an x86
file and an x64 file, to add "runtime support" for some software
you got/bought. Microsoft offers two files for download, and you
install both if expecting 32 bit and 64 bit applications to use
the runtimes.

What's missing on Windows 11 (a 64-bit only OS), is there is a
WOW for 32 bit but no WOW for 16 bit programs. It is technically
possible to do it, but it's not practical for the 7000 developers
to do it.

On Win10 (and Win8, Win7, Vista)

x64 OS = run 64bit and 32bit programs

x86 OS = run 32bit and 16bit programs

The compatibility analysis, and telemetry, helps the staff
keep all that crap tipped upright.

Reading data from storage, is in units of bytes.

Memory DIMMs have byte select strobes, so
it is technically possible to do "fractional writes"
and update 3 bytes in an 8 byte row on the DIMM.

But typically, a CPU transfers a lot of cache lines,
and for those, all eight chip selects are engaged on
each transfer.

Via write combining, the CPU interface "near the DIMM",
can combine a 3 byte write and a 1 byte write and make
a 4 byte write of it. Which still does not materially
change how it works.

We no longer really know how this stuff works, as the
data sheets "no longer require this level of detail".
Trust us. Or something. Think of what fun it must be
for a university professor to teach this stuff. And wait until
(soon) they remove all the legacy support and start over.
They've been threatening to do that. Maybe some day,
you might not need to know what "A20" is all about :-)

https://en.wikipedia.org/wiki/A20_line

Paul

Re: Can windows 64 "read" 16 bit data? -run -running

<MPG.3f7a6f78f924635c9901a9@news.individual.net>

  copy mid

https://www.novabbs.com/computers/article-flat.php?id=73474&group=alt.comp.os.windows-10#73474

  copy link   Newsgroups: alt.comp.os.windows-10
Path: i2pn2.org!i2pn.org!weretis.net!feeder8.news.weretis.net!fu-berlin.de!uni-berlin.de!individual.net!not-for-mail
From: the_stan...@fastmail.fm (Stan Brown)
Newsgroups: alt.comp.os.windows-10
Subject: Re: Can windows 64 "read" 16 bit data? -run -running
Date: Sun, 24 Sep 2023 17:08:56 -0700
Organization: Oak Road Systems
Lines: 21
Message-ID: <MPG.3f7a6f78f924635c9901a9@news.individual.net>
References: <uepn84$1dtmh$1@dont-email.me> <uepokv$1e7pg$1@dont-email.me> <uepqeb$1eimp$1@dont-email.me> <knba8jFmfujU2@mid.individual.net> <ueqear$1i1cg$2@dont-email.me>
Mime-Version: 1.0
Content-Type: text/plain; charset="us-ascii"
Content-Transfer-Encoding: 7bit
X-Trace: individual.net FfQHfziZVG/kkovJoAh2bQJYMxFQvBaLZ/gzWAcTSdJToHrGoF
Cancel-Lock: sha1:VBHGtVM4FVrE6UTv4EOz+fVY1rM= sha256:MSRgCPyrMptJZ/3V0KhHe9fl0t0OzyxvhqulL/Y/GdI=
User-Agent: MicroPlanet-Gravity/3.0.11 (GRC)
 by: Stan Brown - Mon, 25 Sep 2023 00:08 UTC

On Sun, 24 Sep 2023 18:47:55 -0400, Paul wrote:
> Does using double quotes
>
> smurf "father"
>
> still work, to make "father" a mandatory term ?

As far as I know, quotes never meant "mandatory". Quotes were just a
way of using ab phrase search instead of only single words. But I'll
take correction on that if I'm wrong.

In any case, the + sign, which used to indicate a mandatory term, no
longer does. Quite often, when I use it, and then manually search in
the first few Google results for the mandatory term, it's not there.
That's been true for at least a couple of years. I don't know whether
+ is completely meaningless now, or it just means something
difference from "mandatory". Knowing Google, I suspect the latter.

--
Stan Brown, Tehachapi, California, USA https://BrownMath.com/
Shikata ga nai...

Re: Can windows 64 "read" 16 bit data? -run -running

<MPG.3f7a70377bec11269901aa@news.individual.net>

  copy mid

https://www.novabbs.com/computers/article-flat.php?id=73475&group=alt.comp.os.windows-10#73475

  copy link   Newsgroups: alt.comp.os.windows-10
Path: i2pn2.org!i2pn.org!nntp.comgw.net!fu-berlin.de!uni-berlin.de!individual.net!not-for-mail
From: the_stan...@fastmail.fm (Stan Brown)
Newsgroups: alt.comp.os.windows-10
Subject: Re: Can windows 64 "read" 16 bit data? -run -running
Date: Sun, 24 Sep 2023 17:12:17 -0700
Organization: Oak Road Systems
Lines: 23
Message-ID: <MPG.3f7a70377bec11269901aa@news.individual.net>
References: <uepn84$1dtmh$1@dont-email.me> <uepokv$1e7pg$1@dont-email.me> <uepqeb$1eimp$1@dont-email.me> <ueqfkl$1i8l5$1@dont-email.me>
Mime-Version: 1.0
Content-Type: text/plain; charset="us-ascii"
Content-Transfer-Encoding: 7bit
X-Trace: individual.net do2JaibgNIM1zYP3i9FSUgN5yBCRSlAaf/xrATT6YZ4Gr9z3hm
Cancel-Lock: sha1:DnETohvk9pnu6E/1q2EgmKfAoBA= sha256:Aby0lwfTryADZiuM17F5PAiWSa65HoZpoB8obrVABlc=
User-Agent: MicroPlanet-Gravity/3.0.11 (GRC)
 by: Stan Brown - Mon, 25 Sep 2023 00:12 UTC

On Sun, 24 Sep 2023 19:10:11 -0400, Paul wrote:
> On Win10 (and Win8, Win7, Vista)
>
> x64 OS = run 64bit and 32bit programs
>
> x86 OS = run 32bit and 16bit programs
>
> The compatibility analysis, and telemetry, helps the staff
> keep all that crap tipped upright.
>

_Is_ there 32-bit Windows 10? I thought a 64-bit CPU was a
requirement for Win 10. Butaccording to
<https://support.microsoft.com/en-us/windows/windows-10-system-
requirements-6d4e9a79-66bf-7950-467c-795cf0386715> I'm wrong, and 32-
bit Win 10 will run with 1 GB RAM and 16GB disk.

Well, FSVO "run"; I suspect "crawl" would be a better choice of
words.

--
Stan Brown, Tehachapi, California, USA https://BrownMath.com/
Shikata ga nai...

Re: Can windows 64 "read" 16 bit data? -run -running

<ueqlmg$1j5tr$1@dont-email.me>

  copy mid

https://www.novabbs.com/computers/article-flat.php?id=73476&group=alt.comp.os.windows-10#73476

  copy link   Newsgroups: alt.comp.os.windows-10
Path: i2pn2.org!i2pn.org!eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: Pau...@Houston.Texas (Paul in Houston TX)
Newsgroups: alt.comp.os.windows-10
Subject: Re: Can windows 64 "read" 16 bit data? -run -running
Date: Sun, 24 Sep 2023 19:53:35 -0500
Organization: A noiseless patient Spider
Lines: 9
Message-ID: <ueqlmg$1j5tr$1@dont-email.me>
References: <uepn84$1dtmh$1@dont-email.me>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
Injection-Date: Mon, 25 Sep 2023 00:53:36 -0000 (UTC)
Injection-Info: dont-email.me; posting-host="5fa5b7ed19d07cad746f7aa2eb59046b";
logging-data="1677243"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1917+dAeGy7UxuA/dn2251S"
User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:102.0) Gecko/20100101
Firefox/102.0 SeaMonkey/2.53.8
Cancel-Lock: sha1:GwlwpUDCgxl2LM4jCCRfE3Wa668=
In-Reply-To: <uepn84$1dtmh$1@dont-email.me>
 by: Paul in Houston TX - Mon, 25 Sep 2023 00:53 UTC

Paul in Houston TX wrote:
> Can windows 64 "read" 16 bit data? -run -running -convert
>
> Google Duck does not know.
>
> How about 8 bit?

Thanks, Everyone.

Re: Can windows 64 "read" 16 bit data? -run -running

<kncnbtFufolU1@mid.individual.net>

  copy mid

https://www.novabbs.com/computers/article-flat.php?id=73479&group=alt.comp.os.windows-10#73479

  copy link   Newsgroups: alt.comp.os.windows-10
Path: i2pn2.org!i2pn.org!weretis.net!feeder8.news.weretis.net!fu-berlin.de!uni-berlin.de!individual.net!not-for-mail
From: use...@andyburns.uk (Andy Burns)
Newsgroups: alt.comp.os.windows-10
Subject: Re: Can windows 64 "read" 16 bit data? -run -running
Date: Mon, 25 Sep 2023 07:23:59 +0100
Lines: 10
Message-ID: <kncnbtFufolU1@mid.individual.net>
References: <uepn84$1dtmh$1@dont-email.me> <uepokv$1e7pg$1@dont-email.me>
<uepqeb$1eimp$1@dont-email.me> <knba8jFmfujU2@mid.individual.net>
<ueqear$1i1cg$2@dont-email.me>
<MPG.3f7a6f78f924635c9901a9@news.individual.net>
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
X-Trace: individual.net JIpbxdMTCAryEip/M5F1igYETW+gXOCsXPIAEJKk4nPTaO+vpZ
Cancel-Lock: sha1:w+/CnEILgFcrFqpk+reeh5ft6K4= sha256:ACFZ7K5xsEvuI4QW2mZ2qC95QbCMYyWvehTW88s7Vlo=
User-Agent: Mozilla Thunderbird
Content-Language: en-GB
In-Reply-To: <MPG.3f7a6f78f924635c9901a9@news.individual.net>
 by: Andy Burns - Mon, 25 Sep 2023 06:23 UTC

Stan Brown wrote:

> I don't know whether + is completely meaningless now, or it just means
> something difference from "mandatory".

It's quite annoying, it shows the +word in struckout font, so it knows
you meant it to be mandatory, but it's admitting it doesn't exist yet
it's included the result anyway, e.g.

<https://google.com/search?q=%2Bspecial+ugigiugi>

Re: Can windows 64 "read" 16 bit data? -run -running

<kncnhvFufolU2@mid.individual.net>

  copy mid

https://www.novabbs.com/computers/article-flat.php?id=73480&group=alt.comp.os.windows-10#73480

  copy link   Newsgroups: alt.comp.os.windows-10
Path: i2pn2.org!i2pn.org!nntp.comgw.net!fu-berlin.de!uni-berlin.de!individual.net!not-for-mail
From: use...@andyburns.uk (Andy Burns)
Newsgroups: alt.comp.os.windows-10
Subject: Re: Can windows 64 "read" 16 bit data? -run -running
Date: Mon, 25 Sep 2023 07:27:12 +0100
Lines: 9
Message-ID: <kncnhvFufolU2@mid.individual.net>
References: <uepn84$1dtmh$1@dont-email.me> <uepokv$1e7pg$1@dont-email.me>
<uepqeb$1eimp$1@dont-email.me> <ueqfkl$1i8l5$1@dont-email.me>
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
X-Trace: individual.net L4VWliZVzbA/R/KoYAjyGQY8CsJvTRwaDfuuev7EihP0tNjzRR
Cancel-Lock: sha1:jl3FO4u8LGF93kJfuWKn9vbLB2I= sha256:r0VXvxywexCEiMkOhJNL7t6s7L/dv06r0mnh54OJLKY=
User-Agent: Mozilla Thunderbird
Content-Language: en-GB
In-Reply-To: <ueqfkl$1i8l5$1@dont-email.me>
 by: Andy Burns - Mon, 25 Sep 2023 06:27 UTC

Paul wrote:

> On Win10 (and Win8, Win7, Vista)
>
> x64 OS = run 64bit and 32bit programs
> x86 OS = run 32bit and 16bit programs

To run 16bit code under a 64bit OS you can use emulation such as DOSbox

Re: Can windows 64 "read" 16 bit data? -run -running

<uert7c$1td50$1@dont-email.me>

  copy mid

https://www.novabbs.com/computers/article-flat.php?id=73481&group=alt.comp.os.windows-10#73481

  copy link   Newsgroups: alt.comp.os.windows-10
Path: i2pn2.org!i2pn.org!eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: Newya...@invalid.nospam (Newyana2)
Newsgroups: alt.comp.os.windows-10
Subject: Re: Can windows 64 "read" 16 bit data? -run -running
Date: Mon, 25 Sep 2023 08:07:17 -0400
Organization: A noiseless patient Spider
Lines: 17
Message-ID: <uert7c$1td50$1@dont-email.me>
References: <uepn84$1dtmh$1@dont-email.me> <uepokv$1e7pg$1@dont-email.me> <uepqeb$1eimp$1@dont-email.me> <knba8jFmfujU2@mid.individual.net> <ueqear$1i1cg$2@dont-email.me> <MPG.3f7a6f78f924635c9901a9@news.individual.net>
Injection-Date: Mon, 25 Sep 2023 12:08:12 -0000 (UTC)
Injection-Info: dont-email.me; posting-host="0f73f1f7a22d419dc89d5d73a265d8a5";
logging-data="2012320"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX18WvmL+qdbi6GgqTVu9I+x2ULrjIzmxOrY="
Cancel-Lock: sha1:2xSJ4d7YU2BmjRcMaGrfT1T4mk4=
X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.5512
X-Priority: 3
X-MSMail-Priority: Normal
X-Newsreader: Microsoft Outlook Express 6.00.2900.5512
 by: Newyana2 - Mon, 25 Sep 2023 12:07 UTC

"Stan Brown" <the_stan_brown@fastmail.fm> wrote

|
| As far as I know, quotes never meant "mandatory". Quotes were just a
| way of using ab phrase search instead of only single words. But I'll
| take correction on that if I'm wrong.
| With DDG, if you look for apple orange snicketty it may
come back saying, "Not many results contain snicketty.
Is that really important?" If you then tell DDG that yes, you
want to search for what you said you wanted to search
for, it will put snicketty in quotes anr run again.

But I no longer see any effect from a minus sign. Which is
unfortunate. It's so often useful.

Re: Can windows 64 "read" 16 bit data? -run -running

<kndr43F5lrmU1@mid.individual.net>

  copy mid

https://www.novabbs.com/computers/article-flat.php?id=73488&group=alt.comp.os.windows-10#73488

  copy link   Newsgroups: alt.comp.os.windows-10
Path: i2pn2.org!i2pn.org!weretis.net!feeder8.news.weretis.net!fu-berlin.de!uni-berlin.de!individual.net!not-for-mail
From: mills37....@gmail.com (Roger Mills)
Newsgroups: alt.comp.os.windows-10
Subject: Re: Can windows 64 "read" 16 bit data? -run -running
Date: Mon, 25 Sep 2023 17:34:11 +0100
Lines: 25
Message-ID: <kndr43F5lrmU1@mid.individual.net>
References: <uepn84$1dtmh$1@dont-email.me> <uepokv$1e7pg$1@dont-email.me>
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
X-Trace: individual.net 1ItPiwTR3l1FE6Ds6m3T3Q9zVrdXkAfDscwUijWaoDFz9TGLgl
Cancel-Lock: sha1:MreR7inXdJGZGsGWJyqJAz/nJLA= sha256:PkYnKJ3iBu3j+dVdvHibHu+IK2F5O6dSVL7T2b4hKyk=
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101
Thunderbird/102.15.1
Content-Language: en-US
In-Reply-To: <uepokv$1e7pg$1@dont-email.me>
 by: Roger Mills - Mon, 25 Sep 2023 16:34 UTC

On 24/09/2023 17:36, Newyana2 wrote:
> "Paul in Houston TX" <Paul@Houston.Texas> wrote
>
> | Can windows 64 "read" 16 bit data? -run -running -convert
> |
> | Google Duck does not know.
> |
> | How about 8 bit?
>
> Win64 can't run 16-bit executables. Reading data
> is not limited. For example, a PNG file is 32-bit data.
> A B/W BMP file is one-bit data. Data is data. The
> context and/or file format determine how you read it.
>

It's worth noting that a lot of old programs have 16-bit installers even
though the programs themselves are 32-bit - so would run on a 64-bit
system but you can't install them by conventional means.

You can sometimes get round that by copying the .exe and .dll files from
a working 32-bit system, and then patching the registry entries.
--
Cheers,
Roger

Re: Can windows 64 "read" 16 bit data? -run -running

<uesqqc$23dtn$1@dont-email.me>

  copy mid

https://www.novabbs.com/computers/article-flat.php?id=73501&group=alt.comp.os.windows-10#73501

  copy link   Newsgroups: alt.comp.os.windows-10
Path: i2pn2.org!i2pn.org!eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: Mik...@fred.com (MikeS)
Newsgroups: alt.comp.os.windows-10
Subject: Re: Can windows 64 "read" 16 bit data? -run -running
Date: Mon, 25 Sep 2023 21:33:15 +0100
Organization: A noiseless patient Spider
Lines: 27
Message-ID: <uesqqc$23dtn$1@dont-email.me>
References: <uepn84$1dtmh$1@dont-email.me> <uepokv$1e7pg$1@dont-email.me>
<kndr43F5lrmU1@mid.individual.net>
MIME-Version: 1.0
Content-Type: text/plain; charset=utf-8; format=flowed
Content-Transfer-Encoding: 8bit
Injection-Date: Mon, 25 Sep 2023 20:33:16 -0000 (UTC)
Injection-Info: dont-email.me; posting-host="ec8e6cc38883f11ea081af48b0316499";
logging-data="2209719"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1/CBGPdUs268wL7FU6mI0qR"
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko/20100101
Thunderbird/78.14.0
Cancel-Lock: sha1:i35Ehg/PuFjxetoUaxAxRWBbmE4=
In-Reply-To: <kndr43F5lrmU1@mid.individual.net>
Content-Language: en-GB
 by: MikeS - Mon, 25 Sep 2023 20:33 UTC

On 25/09/2023 17:34, Roger Mills wrote:
> On 24/09/2023 17:36, Newyana2 wrote:
>> "Paul in Houston TX" <Paul@Houston.Texas> wrote
>>
>> | Can windows 64 "read" 16 bit data? -run -running -convert
>> |
>> | Google Duck does not know.
>> |
>> | How about 8 bit?
>>
>>     Win64 can't run 16-bit executables. Reading data
>> is not limited. For example, a PNG file is 32-bit data.
>> A B/W BMP file is one-bit data. Data is data. The
>> context and/or file format determine how you read it.
>>
>
> It's worth noting that a lot of old programs have 16-bit installers even
> though the programs themselves are 32-bit - so would run on a 64-bit
> system but you can't install them by conventional means.
>
> You can sometimes get round that by copying the .exe and .dll files from
> a working 32-bit system, and then patching the registry entries.

If anyone reading this thread is interested in running 16 bit programs
on a modern PC search for Otvdm which uses Wine. It lets me run a couple
of ancient favourites (I think from Win 3.1 days) seamlessly on 64 bit
Windows 11.

Re: Can windows 64 "read" 16 bit data? -run -running

<uet3ce$24tcn$1@dont-email.me>

  copy mid

https://www.novabbs.com/computers/article-flat.php?id=73502&group=alt.comp.os.windows-10#73502

  copy link   Newsgroups: alt.comp.os.windows-10
Path: i2pn2.org!i2pn.org!eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: Pau...@Houston.Texas (Paul in Houston TX)
Newsgroups: alt.comp.os.windows-10
Subject: Re: Can windows 64 "read" 16 bit data? -run -running
Date: Mon, 25 Sep 2023 17:59:20 -0500
Organization: A noiseless patient Spider
Lines: 32
Message-ID: <uet3ce$24tcn$1@dont-email.me>
References: <uepn84$1dtmh$1@dont-email.me> <uepokv$1e7pg$1@dont-email.me>
<kndr43F5lrmU1@mid.individual.net> <uesqqc$23dtn$1@dont-email.me>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
Injection-Date: Mon, 25 Sep 2023 22:59:27 -0000 (UTC)
Injection-Info: dont-email.me; posting-host="a5a780573fbc50d3ee3dcc3b0eedddfe";
logging-data="2258327"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1+NP0bDERoM1SaGZJVWex8u"
User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:102.0) Gecko/20100101
Firefox/102.0 SeaMonkey/2.53.8
Cancel-Lock: sha1:Q+wZ5kKqX7nSMmhZvAO5S8Gl/Ws=
In-Reply-To: <uesqqc$23dtn$1@dont-email.me>
 by: Paul in Houston TX - Mon, 25 Sep 2023 22:59 UTC

MikeS wrote:
> On 25/09/2023 17:34, Roger Mills wrote:
>> On 24/09/2023 17:36, Newyana2 wrote:
>>> "Paul in Houston TX" <Paul@Houston.Texas> wrote
>>>
>>> | Can windows 64 "read" 16 bit data? -run -running -convert
>>> |
>>> | Google Duck does not know.
>>> |
>>> | How about 8 bit?
>>>
>>>     Win64 can't run 16-bit executables. Reading data
>>> is not limited. For example, a PNG file is 32-bit data.
>>> A B/W BMP file is one-bit data. Data is data. The
>>> context and/or file format determine how you read it.
>>>
>>
>> It's worth noting that a lot of old programs have 16-bit installers
>> even though the programs themselves are 32-bit - so would run on a
>> 64-bit system but you can't install them by conventional means.
>>
>> You can sometimes get round that by copying the .exe and .dll files
>> from a working 32-bit system, and then patching the registry entries.
>
> If anyone reading this thread is interested in running 16 bit programs
> on a modern PC search for Otvdm which uses Wine. It lets me run a couple
> of ancient favourites (I think from Win 3.1 days) seamlessly on 64 bit
> Windows 11.

How interesting! Thank you.
I will check it out and let the group know if it works.

Re: Can windows 64 "read" 16 bit data? -run -running

<ueu7te$2egc6$1@dont-email.me>

  copy mid

https://www.novabbs.com/computers/article-flat.php?id=73506&group=alt.comp.os.windows-10#73506

  copy link   Newsgroups: alt.comp.os.windows-10
Path: i2pn2.org!i2pn.org!eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: Mik...@fred.com (MikeS)
Newsgroups: alt.comp.os.windows-10
Subject: Re: Can windows 64 "read" 16 bit data? -run -running
Date: Tue, 26 Sep 2023 10:22:53 +0100
Organization: A noiseless patient Spider
Lines: 36
Message-ID: <ueu7te$2egc6$1@dont-email.me>
References: <uepn84$1dtmh$1@dont-email.me> <uepokv$1e7pg$1@dont-email.me>
<kndr43F5lrmU1@mid.individual.net> <uesqqc$23dtn$1@dont-email.me>
<uet3ce$24tcn$1@dont-email.me>
MIME-Version: 1.0
Content-Type: text/plain; charset=utf-8; format=flowed
Content-Transfer-Encoding: 8bit
Injection-Date: Tue, 26 Sep 2023 09:22:54 -0000 (UTC)
Injection-Info: dont-email.me; posting-host="c83f63efb5ad9294314f7d6fb943e91f";
logging-data="2572678"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1/cBdo17SUKhYnJK5oy64cv"
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko/20100101
Thunderbird/78.14.0
Cancel-Lock: sha1:ZpfRg/OkMpj1h6302cFm2x8e2qY=
In-Reply-To: <uet3ce$24tcn$1@dont-email.me>
Content-Language: en-GB
 by: MikeS - Tue, 26 Sep 2023 09:22 UTC

On 25/09/2023 23:59, Paul in Houston TX wrote:
> MikeS wrote:
>> On 25/09/2023 17:34, Roger Mills wrote:
>>> On 24/09/2023 17:36, Newyana2 wrote:
>>>> "Paul in Houston TX" <Paul@Houston.Texas> wrote
>>>>
>>>> | Can windows 64 "read" 16 bit data? -run -running -convert
>>>> |
>>>> | Google Duck does not know.
>>>> |
>>>> | How about 8 bit?
>>>>
>>>>     Win64 can't run 16-bit executables. Reading data
>>>> is not limited. For example, a PNG file is 32-bit data.
>>>> A B/W BMP file is one-bit data. Data is data. The
>>>> context and/or file format determine how you read it.
>>>>
>>>
>>> It's worth noting that a lot of old programs have 16-bit installers
>>> even though the programs themselves are 32-bit - so would run on a
>>> 64-bit system but you can't install them by conventional means.
>>>
>>> You can sometimes get round that by copying the .exe and .dll files
>>> from a working 32-bit system, and then patching the registry entries.
>>
>> If anyone reading this thread is interested in running 16 bit programs
>> on a modern PC search for Otvdm which uses Wine. It lets me run a
>> couple of ancient favourites (I think from Win 3.1 days) seamlessly on
>> 64 bit Windows 11.
>
> How interesting!  Thank you.
> I will check it out and let the group know if it works.
>
It does:
https://ibb.co/51PcsWc

1
server_pubkey.txt

rocksolid light 0.9.81
clearnet tor