Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.arch > #112101

Re: Why I've Dropped In

From BGB <cr88192@gmail.com>
Newsgroups comp.arch
Subject Re: Why I've Dropped In
Date 2025-06-15 16:42 -0500
Organization A noiseless patient Spider
Message-ID <102neo7$154is$1@dont-email.me> (permalink)
References (8 earlier) <46beb69a526eea8db9d741c6acca4482@www.novabbs.org> <102fgu2$2u1na$1@dont-email.me> <a34152fc56cbc0950b6dbd235bd8fb74@www.novabbs.org> <102n2vt$12enl$1@dont-email.me> <a77dce936b8322de380137453e19486f@www.novabbs.org>

Show all headers | View raw


On 6/15/2025 1:42 PM, MitchAlsup1 wrote:
> On Sun, 15 Jun 2025 18:21:48 +0000, BGB wrote:
> 
>> On 6/12/2025 7:00 PM, MitchAlsup1 wrote:
>>> On Thu, 12 Jun 2025 21:30:39 +0000, BGB wrote:
>>>
>>>> On 6/12/2025 2:13 PM, MitchAlsup1 wrote:
>>> ------------------------------
>>>>> The modern interpretation is that the dynamic rounding mode can be set
>>>>> prior to any FP instruction. So, you better be able to set it rapidly
>>>>> and without pipeline drain, and you need to mark the downstream FP
>>>>> instructions as dependent on this.
>>>>
>>>> Errm, there is likely to be a delay here, otherwise one will get a 
>>>> stale
>>>> rounding mode.
>>>
>>> RM is "just 3-bits" that get read from control register and piped
>>> through instruction queue to function unit. Think of the problem
>>> one would have if a hyperthreaded core had to stutter step through
>>> changing RM ...
>>>
>>
>> To do it more quickly, one would likely need special logic in the
>> pipeline for getting the updated RM to the FPU in a more timely manner.
> 
> Realistically, it (RM) is no different than a condition code;
> except that RM is main effect of an instruction instead of a
> side effect of performing an instruction.
> 

They are routed differently though.

The SR.S and SR.T bits are sorta special-cased between the EX2 and 
ID2/RF stages. As opposed to the register-update / forwarding path.


>> If done (as-is) in a lax way: Held in the HOBs of GP/GBR or similar,
>> which is handled as an SPR that gets broadcast out of the regfile.
>>
>> Then one has the latency issue:
>> The new value needs to reach the regfile (WB stage);
>> The value then needs to make its way to the relevant ID2/RF stage (next
>> cycle after WB).
>>
> Once again, this is no different than a condition code.

Routing it similar to the S/T flags would be possible, but is comparably 
expensive.

As-is, SR.T update also has a 2-cycle latency mostly because 1-cycle T 
update ended up being too expensive.


Initially, SR.T was routed into EX1, but this had a lot of cost and also 
was bad for timing. Changed to routing it into ID2/RF (the same as 
normal registers), requiring an interlock check for a conditional op 
directly following a status-modifying op.


Does mean that:
   CMPEQ  Imm, Reg
   BT     Disp
Effectively ends up with a minimum latency of 4 clock cycles.

Which, in turn shifts the efficiency balance towards:
   MOB   Imm, Rt
   BEQ   Reg, Rt, Disp
( 3 cycles ).

Or, non-standard / experimental:
   BEQI  Reg, Imm, Disp
( 2 cycles. )

Though, despite saving a register load, in my testing this doesn't save 
enough to be worthwhile, more so (in XG3 and RV64) where the most common 
immediate is 0 which can be encoded with ZR (and there are a lot fewer 
cases when one assumes non-zero values).


>>
>> A lazy option would be to add an interlock so that any dynamic rounding
>> mode instruction would generate pipeline stalls for any in-flight
>> modifications to GBR (as opposed to using a branch or a series of NOPs).
>> This was not done in my existing implementation.
>>
> Just track RM as if it were a condition code.

Doing so would likely cost more than either:
   Another interlock check;
   Do nothing.

To save a few clock cycles on the ~ 0.001% or so of code that uses FENV...

Granted, interlock checks still aren't free though. Cheapest option, 
while still weak, being to just ignore the whole issue (with a risk that 
the FPU could see a stale value).

Though, if an interlock were added, could eliminate the staleness issue, 
and requires the fewest changes. Still means one needs to wait for the 
value to pass through WB (so, probably a 3 or 4 cycle latency or 
similar), but fewer cycles than an indirect branch.


>>
>> But, IME, the "fenv.h" stuff, and FENV_ACCESS, is rarely used.
>> So, making "fesetround()" or similar faster doesn't seem like a high
>> priority.
>>
>> If having "fsetround()" as a function call, can also ensure the needed
>> delay as-is by using a non-default register during the return (mostly to
>> hinder the branch predictor).
>>
>>
>>>>
>>>> So, setting the rounding mode might be something like:
>>>>    MOV .L0, R14
>>>>    MOVTT GP, 0x8001, GP  //Set to rounding mode 1, clear flag bits
>>>>    JMP R14         //use branch to flush pipeline
>>>>    .L0:            //updated FPSR now ready
>>>>    FADDG R11, R12, R10  //FADD, dynamic mode
>>>
>>> Setting RM to a constant (known) value::
>>>
>>>      HRW  rd,RM,#imm3    // rd gets old value
>>>
>>
>> It is possible,
> 
> Of course it is possible, especially if you make it work like it
> is supposed to work an not as a hard to do thing.

Most ISAs have it in a register of some sort.
   Often a Control Register or CSR or such.


>>
>> Could almost alias the bits to part of SR, where SR does generally have
>> a more timely update process (could reduce latency to 2 cycles).
>>
> I can see constant writes to RM as taking ZERO cycles.

There are no zero-cycle operations in my core (apart from jumbo 
prefixes, but these don't really count).

Minimum it is likely to get is 2 cycles (same as SR.T and similar).
   Or, ~ 2 cycles, if adding it via special-case forwarding.

But, more likely, 3 or 4 if I add an interlock (depends mostly on the 
WB->ID2 path, may need to look at this part).



>>
>> At present, the RM field is held in GBR(51:48), with fast update options
>> either being a MOVTT (can replace the high 16 bits, *1) or BITMOV,
> 
> It does not mater where it is--what maters is that it can be overwritten
> every execution cycle, and that instructions dependent on its current
> value are properly sequenced. Reservation stations do that for register
> and memory data, why not add RM (and carry) to them ??
> 

It is more a cost vs usage frequency trade-off.

This scenario is rare enough that it is harder to justify anything other 
than the cheapest possible option.



>> *1: There is a MOVTT Imm5/Imm6 variant, currently can only modify
>> (63:60) though.
>>
>>
>> Though, this strategy is only directly usable in XG3 (where GBR is
>> mapped to R3/X3), N/A in XG1 or XG2, where GBR is in CR space and so
>> would require 3 instructions.
>>
>> Implicitly, the fragment assumed XG3, but then this leaves open the
>> issue of whether to use my former ASM syntax or RISC-V style ASM syntax
>> (BGBCC can sorta accept either, with my newer X3VM experiment defaulting
>> to RISC-V syntax).
>>
>>
>> Can note that the RISC-V F/D instructions define a fixed rounding modes
>> in the instruction, with rounding modes for a dynamic rounding mode
>> (though, IIRC, no way to update the dynamic RM within the scope of the
>> base ISA; so one needs Zicsr and similar to pull it off).
>>
> The IEEE 754-2019 specification causes languages that adopt 754
> semantics to follow 754--which has a rather kludgy means to modify
> RM.

Some of this could be avoided if there were some sort of attribute or 
something to modify rounding per-operator.

Say:
   z = [[round(rtz)]] x*y;
Or:
   z = __fmul_rtz(x, y)

Or something...

Back to comp.arch | Previous | NextPrevious in thread | Next in thread | Find similar


Thread

Why I've Dropped In quadibloc <quadibloc@gmail.com> - 2025-05-19 19:15 +0000
  Re: Why I've Dropped In quadibloc <quadibloc@gmail.com> - 2025-05-19 21:26 +0000
    Re: Why I've Dropped In quadibloc <quadibloc@gmail.com> - 2025-05-21 15:07 +0000
      Re: Why I've Dropped In David Chmelik <dchmelik@gmail.com> - 2025-05-22 06:51 +0000
        Re: Why I've Dropped In mitchalsup@aol.com (MitchAlsup1) - 2025-05-22 17:42 +0000
          Re: Why I've Dropped In scott@slp53.sl.home (Scott Lurndal) - 2025-05-22 18:03 +0000
            Re: Why I've Dropped In mitchalsup@aol.com (MitchAlsup1) - 2025-05-23 12:37 +0000
              Re: Why I've Dropped In scott@slp53.sl.home (Scott Lurndal) - 2025-05-23 13:24 +0000
        Re: Why I've Dropped In quadibloc <quadibloc@gmail.com> - 2025-06-10 21:45 +0000
          Re: Why I've Dropped In BGB <cr88192@gmail.com> - 2025-06-10 22:45 -0500
          Re: Why I've Dropped In quadibloc <quadibloc@gmail.com> - 2025-06-11 17:19 +0000
            Re: Why I've Dropped In "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-06-11 12:16 -0700
              Re: Why I've Dropped In quadibloc <quadibloc@gmail.com> - 2025-06-12 02:11 +0000
                Re: Why I've Dropped In "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-06-12 11:48 -0700
                Re: Why I've Dropped In "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-06-15 17:26 -0700
            Re: Why I've Dropped In quadibloc <quadibloc@gmail.com> - 2025-06-12 08:00 +0000
      Re: Why I've Dropped In quadibloc <quadibloc@gmail.com> - 2025-06-10 22:53 +0000
        Re: Why I've Dropped In Thomas Koenig <tkoenig@netcologne.de> - 2025-06-11 05:56 +0000
          Re: Why I've Dropped In BGB <cr88192@gmail.com> - 2025-06-11 04:42 -0500
            Re: Why I've Dropped In mitchalsup@aol.com (MitchAlsup1) - 2025-06-11 16:37 +0000
              Re: Why I've Dropped In BGB <cr88192@gmail.com> - 2025-06-11 14:47 -0500
                Re: Why I've Dropped In mitchalsup@aol.com (MitchAlsup1) - 2025-06-12 19:13 +0000
                Re: Why I've Dropped In BGB <cr88192@gmail.com> - 2025-06-12 16:30 -0500
                Re: Why I've Dropped In mitchalsup@aol.com (MitchAlsup1) - 2025-06-13 00:00 +0000
                Re: Why I've Dropped In BGB <cr88192@gmail.com> - 2025-06-15 13:21 -0500
                Re: Why I've Dropped In mitchalsup@aol.com (MitchAlsup1) - 2025-06-15 18:42 +0000
                Re: Why I've Dropped In BGB <cr88192@gmail.com> - 2025-06-15 16:42 -0500
            Re: Why I've Dropped In anton@mips.complang.tuwien.ac.at (Anton Ertl) - 2025-06-11 16:51 +0000
              Re: Why I've Dropped In mitchalsup@aol.com (MitchAlsup1) - 2025-06-11 19:08 +0000
                Re: Why I've Dropped In EricP <ThatWouldBeTelling@thevillage.com> - 2025-06-11 18:00 -0400
                Re: Why I've Dropped In mitchalsup@aol.com (MitchAlsup1) - 2025-06-11 23:01 +0000
                Re: Why I've Dropped In anton@mips.complang.tuwien.ac.at (Anton Ertl) - 2025-06-12 08:38 +0000
                Re: Why I've Dropped In mitchalsup@aol.com (MitchAlsup1) - 2025-06-12 18:44 +0000
                Re: Why I've Dropped In anton@mips.complang.tuwien.ac.at (Anton Ertl) - 2025-06-20 05:56 +0000
                Re: Why I've Dropped In Thomas Koenig <tkoenig@netcologne.de> - 2025-06-12 19:55 +0000
              Re: Why I've Dropped In BGB <cr88192@gmail.com> - 2025-06-11 16:28 -0500
                Re: Why I've Dropped In anton@mips.complang.tuwien.ac.at (Anton Ertl) - 2025-06-12 07:05 +0000
                Re: Why I've Dropped In BGB <cr88192@gmail.com> - 2025-06-12 15:27 -0500
            Re: Why I've Dropped In quadibloc <quadibloc@gmail.com> - 2025-06-20 15:30 +0000
              Re: Why I've Dropped In mitchalsup@aol.com (MitchAlsup1) - 2025-06-20 15:59 +0000
                Re: Why I've Dropped In moi <findlaybill@blueyonder.co.uk> - 2025-06-20 17:12 +0100
                Re: Why I've Dropped In quadibloc <quadibloc@gmail.com> - 2025-06-20 19:46 +0000
          Re: Why I've Dropped In quadibloc <quadibloc@gmail.com> - 2025-06-11 14:12 +0000
            Re: Why I've Dropped In mitchalsup@aol.com (MitchAlsup1) - 2025-06-11 16:49 +0000
              Re: Why I've Dropped In quadibloc <quadibloc@gmail.com> - 2025-06-11 17:34 +0000
                Re: Why I've Dropped In mitchalsup@aol.com (MitchAlsup1) - 2025-06-11 19:16 +0000
                Re: Why I've Dropped In BGB <cr88192@gmail.com> - 2025-06-14 14:22 -0500
              Re: Why I've Dropped In Stefan Monnier <monnier@iro.umontreal.ca> - 2025-06-16 12:17 -0400
                Re: Why I've Dropped In quadibloc <quadibloc@gmail.com> - 2025-06-17 01:07 +0000
                Re: Why I've Dropped In Stephen Fuld <sfuld@alumni.cmu.edu.invalid> - 2025-06-16 18:26 -0700
                Re: Why I've Dropped In mitchalsup@aol.com (MitchAlsup1) - 2025-06-17 17:45 +0000
                Re: Why I've Dropped In Stephen Fuld <sfuld@alumni.cmu.edu.invalid> - 2025-06-17 11:09 -0700
                Re: Why I've Dropped In Stefan Monnier <monnier@iro.umontreal.ca> - 2025-06-17 16:43 -0400
                Re: Why I've Dropped In mitchalsup@aol.com (MitchAlsup1) - 2025-06-17 21:18 +0000
                Re: Why I've Dropped In Stefan Monnier <monnier@iro.umontreal.ca> - 2025-06-17 18:14 -0400
                Re: Why I've Dropped In anton@mips.complang.tuwien.ac.at (Anton Ertl) - 2025-06-18 07:31 +0000
                Re: Why I've Dropped In Stefan Monnier <monnier@iro.umontreal.ca> - 2025-06-18 11:50 -0400
                Re: Why I've Dropped In anton@mips.complang.tuwien.ac.at (Anton Ertl) - 2025-06-19 08:56 +0000
                Re: Why I've Dropped In BGB <cr88192@gmail.com> - 2025-06-18 15:37 -0500
                Re: Why I've Dropped In "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-06-18 00:47 -0700
                Re: Why I've Dropped In Stefan Monnier <monnier@iro.umontreal.ca> - 2025-06-18 11:22 -0400
                Re: Why I've Dropped In "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-06-19 21:45 -0700
            Re: Why I've Dropped In Thomas Koenig <tkoenig@netcologne.de> - 2025-06-11 17:05 +0000
              Re: Why I've Dropped In quadibloc <quadibloc@gmail.com> - 2025-06-12 15:00 +0000
                Re: Why I've Dropped In Stephen Fuld <sfuld@alumni.cmu.edu.invalid> - 2025-06-12 08:44 -0700
                Re: Why I've Dropped In quadibloc <quadibloc@gmail.com> - 2025-06-13 03:09 +0000
                Re: Why I've Dropped In Stephen Fuld <sfuld@alumni.cmu.edu.invalid> - 2025-06-12 20:36 -0700
                Re: Why I've Dropped In Thomas Koenig <tkoenig@netcologne.de> - 2025-06-13 06:03 +0000
                Re: Why I've Dropped In quadibloc <quadibloc@gmail.com> - 2025-06-13 11:14 +0000
                Re: Why I've Dropped In Stephen Fuld <sfuld@alumni.cmu.edu.invalid> - 2025-06-13 08:23 -0700
                Re: Why I've Dropped In Thomas Koenig <tkoenig@netcologne.de> - 2025-06-13 17:40 +0000
                Re: Why I've Dropped In Stephen Fuld <sfuld@alumni.cmu.edu.invalid> - 2025-06-13 10:57 -0700
                Re: Why I've Dropped In Thomas Koenig <tkoenig@netcologne.de> - 2025-06-13 18:11 +0000
                Re: Why I've Dropped In scott@slp53.sl.home (Scott Lurndal) - 2025-06-13 18:18 +0000
                Re: Why I've Dropped In mitchalsup@aol.com (MitchAlsup1) - 2025-06-13 18:42 +0000
                Re: Why I've Dropped In Stephen Fuld <sfuld@alumni.cmu.edu.invalid> - 2025-06-14 20:31 -0700
                Re: Why I've Dropped In scott@slp53.sl.home (Scott Lurndal) - 2025-06-15 15:55 +0000
                Re: Why I've Dropped In Stephen Fuld <sfuld@alumni.cmu.edu.invalid> - 2025-06-13 11:55 -0700
                Re: base and bounds, Why I've Dropped In John Levine <johnl@taugh.com> - 2025-06-15 17:15 +0000
                Re: base and bounds, Why I've Dropped In Stephen Fuld <sfuld@alumni.cmu.edu.invalid> - 2025-06-15 12:17 -0700
                Re: base and bounds, Why I've Dropped In John Levine <johnl@taugh.com> - 2025-06-15 19:44 +0000
                Re: base and bounds, Why I've Dropped In mitchalsup@aol.com (MitchAlsup1) - 2025-06-15 20:09 +0000
                Re: base and bounds, Why I've Dropped In Stephen Fuld <sfuld@alumni.cmu.edu.invalid> - 2025-06-15 21:02 -0700
                Re: base and bounds, Why I've Dropped In quadibloc <quadibloc@gmail.com> - 2025-06-16 14:37 +0000
                Re: base and bounds, Why I've Dropped In Stephen Fuld <sfuld@alumni.cmu.edu.invalid> - 2025-06-16 07:55 -0700
                Re: base and bounds, Why I've Dropped In mitchalsup@aol.com (MitchAlsup1) - 2025-06-16 17:42 +0000
                Re: base and bounds, Why I've Dropped In Stephen Fuld <sfuld@alumni.cmu.edu.invalid> - 2025-06-16 10:56 -0700
                Re: base and bounds, Why I've Dropped In quadibloc <quadibloc@gmail.com> - 2025-06-16 21:52 +0000
                Re: base and bounds, Why I've Dropped In Stephen Fuld <sfuld@alumni.cmu.edu.invalid> - 2025-06-16 15:04 -0700
                Re: base and bounds, Why I've Dropped In scott@slp53.sl.home (Scott Lurndal) - 2025-06-16 18:11 +0000
                Re: base and bounds, Why I've Dropped In scott@slp53.sl.home (Scott Lurndal) - 2025-06-16 14:25 +0000
                Re: base and bounds, Why I've Dropped In quadibloc <quadibloc@gmail.com> - 2025-06-16 14:45 +0000
                Re: base and bounds, Why I've Dropped In Stephen Fuld <sfuld@alumni.cmu.edu.invalid> - 2025-06-15 14:39 -0700
                Re: base and bounds, Why I've Dropped In John Levine <johnl@taugh.com> - 2025-06-16 02:33 +0000
                Re: base and bounds, Why I've Dropped In scott@slp53.sl.home (Scott Lurndal) - 2025-06-16 14:22 +0000
                Re: big pages, base and bounds, Why I've Dropped In John Levine <johnl@taugh.com> - 2025-06-16 16:42 +0000
                Re: big pages, base and bounds, Why I've Dropped In scott@slp53.sl.home (Scott Lurndal) - 2025-06-16 16:52 +0000
                Re: Why I've Dropped In Lars Poulsen <lars@cleo.beagle-ears.com> - 2025-06-13 19:49 +0000
                Re: Why I've Dropped In mitchalsup@aol.com (MitchAlsup1) - 2025-06-13 18:37 +0000
                Re: Why I've Dropped In scott@slp53.sl.home (Scott Lurndal) - 2025-06-13 21:09 +0000
                Re: Why I've Dropped In quadibloc <quadibloc@gmail.com> - 2025-06-13 20:27 +0000
                Re: Why I've Dropped In Thomas Koenig <tkoenig@netcologne.de> - 2025-06-14 10:48 +0000
                Re: Why I've Dropped In Stephen Fuld <sfuld@alumni.cmu.edu.invalid> - 2025-06-14 09:45 -0700
                Re: Why I've Dropped In EricP <ThatWouldBeTelling@thevillage.com> - 2025-06-14 13:56 -0400
                Re: Why I've Dropped In Stephen Fuld <sfuld@alumni.cmu.edu.invalid> - 2025-06-14 12:23 -0700
                Re: Why I've Dropped In quadibloc <quadibloc@gmail.com> - 2025-06-14 21:26 +0000
                Re: Why I've Dropped In Stephen Fuld <sfuld@alumni.cmu.edu.invalid> - 2025-06-14 14:37 -0700
                Re: Why I've Dropped In quadibloc <quadibloc@gmail.com> - 2025-06-14 21:49 +0000
                Re: Why I've Dropped In Stephen Fuld <sfuld@alumni.cmu.edu.invalid> - 2025-06-14 20:34 -0700
                Re: Why I've Dropped In quadibloc <quadibloc@gmail.com> - 2025-06-15 03:52 +0000
                Re: Why I've Dropped In quadibloc <quadibloc@gmail.com> - 2025-06-15 04:04 +0000
                Re: Why I've Dropped In quadibloc <quadibloc@gmail.com> - 2025-06-15 04:09 +0000
                Re: Why I've Dropped In quadibloc <quadibloc@gmail.com> - 2025-06-15 04:38 +0000
                Re: Why I've Dropped In Thomas Koenig <tkoenig@netcologne.de> - 2025-06-15 07:37 +0000
                Re: Why I've Dropped In Stephen Fuld <sfuld@alumni.cmu.edu.invalid> - 2025-06-15 07:00 -0700
                Re: swapping pain, Why I've Dropped In John Levine <johnl@taugh.com> - 2025-06-15 17:39 +0000
                Re: swapping pain, Why I've Dropped In Stephen Fuld <sfuld@alumni.cmu.edu.invalid> - 2025-06-15 12:23 -0700
                Re: base hackery, Why I've Dropped In John Levine <johnl@taugh.com> - 2025-06-15 17:22 +0000
                Re: Why I've Dropped In EricP <ThatWouldBeTelling@thevillage.com> - 2025-06-15 09:48 -0400
                Re: Why I've Dropped In Thomas Koenig <tkoenig@netcologne.de> - 2025-06-14 18:51 +0000
                Re: Why I've Dropped In Stephen Fuld <sfuld@alumni.cmu.edu.invalid> - 2025-06-14 12:33 -0700
                Re: Why I've Dropped In Thomas Koenig <tkoenig@netcologne.de> - 2025-06-14 20:06 +0000
                Re: Why I've Dropped In quadibloc <quadibloc@gmail.com> - 2025-06-15 19:29 +0000
                Re: Why I've Dropped In Stephen Fuld <sfuld@alumni.cmu.edu.invalid> - 2025-06-18 09:55 -0700
                Re: more addressing, Why I've Dropped In John Levine <johnl@taugh.com> - 2025-06-18 18:19 +0000
                Re: more addressing, Why I've Dropped In Stephen Fuld <sfuld@alumni.cmu.edu.invalid> - 2025-06-18 12:07 -0700
                Re: more addressing, Why I've Dropped In Thomas Koenig <tkoenig@netcologne.de> - 2025-06-19 06:13 +0000
                Re: more addressing, Why I've Dropped In Stephen Fuld <sfuld@alumni.cmu.edu.invalid> - 2025-06-18 23:39 -0700
                Re: more addressing, Why I've Dropped In Thomas Koenig <tkoenig@netcologne.de> - 2025-06-19 07:46 +0000
                Re: Why I've Dropped In scott@slp53.sl.home (Scott Lurndal) - 2025-06-13 13:14 +0000
                Re: Why I've Dropped In quadibloc <quadibloc@gmail.com> - 2025-06-13 11:52 +0000
                Re: Why I've Dropped In Stephen Fuld <sfuld@alumni.cmu.edu.invalid> - 2025-06-13 08:15 -0700
                Re: Why I've Dropped In quadibloc <quadibloc@gmail.com> - 2025-06-13 19:50 +0000
                Re: Why I've Dropped In Stephen Fuld <sfuld@alumni.cmu.edu.invalid> - 2025-06-13 13:50 -0700
                Re: Why I've Dropped In mitchalsup@aol.com (MitchAlsup1) - 2025-06-13 22:01 +0000
                Re: Why I've Dropped In Stephen Fuld <sfuld@alumni.cmu.edu.invalid> - 2025-06-13 23:10 -0700
                Re: Why I've Dropped In anton@mips.complang.tuwien.ac.at (Anton Ertl) - 2025-06-14 09:26 +0000
                Re: Why I've Dropped In Thomas Koenig <tkoenig@netcologne.de> - 2025-06-14 10:44 +0000
                Re: Why I've Dropped In anton@mips.complang.tuwien.ac.at (Anton Ertl) - 2025-06-14 15:40 +0000
                Re: Why I've Dropped In Stephen Fuld <sfuld@alumni.cmu.edu.invalid> - 2025-06-14 09:24 -0700
                Re: Why I've Dropped In Thomas Koenig <tkoenig@netcologne.de> - 2025-06-14 16:49 +0000
                Re: Why I've Dropped In anton@mips.complang.tuwien.ac.at (Anton Ertl) - 2025-06-14 16:39 +0000
                Re: Why I've Dropped In scott@slp53.sl.home (Scott Lurndal) - 2025-06-15 01:07 +0000
                Re: Why I've Dropped In anton@mips.complang.tuwien.ac.at (Anton Ertl) - 2025-06-15 07:10 +0000
                Re: Why I've Dropped In scott@slp53.sl.home (Scott Lurndal) - 2025-06-15 16:01 +0000
                Re: Why I've Dropped In anton@mips.complang.tuwien.ac.at (Anton Ertl) - 2025-06-15 16:53 +0000
                Re: static linked libraries, Why I've Dropped In John Levine <johnl@taugh.com> - 2025-06-15 17:54 +0000
                Re: Why I've Dropped In Robert Swindells <rjs@fdy2.co.uk> - 2025-06-15 19:24 +0000
                Re: Why I've Dropped In scott@slp53.sl.home (Scott Lurndal) - 2025-06-16 14:15 +0000
                Re: static libraries, Why I've Dropped In John Levine <johnl@taugh.com> - 2025-06-15 17:00 +0000
                Re: Why I've Dropped In Thomas Koenig <tkoenig@netcologne.de> - 2025-06-14 16:56 +0000
                Re: Why I've Dropped In Lars Poulsen <lars@cleo.beagle-ears.com> - 2025-06-14 12:42 +0000
                Re: Why I've Dropped In anton@mips.complang.tuwien.ac.at (Anton Ertl) - 2025-06-14 15:53 +0000
                Re: Why I've Dropped In mitchalsup@aol.com (MitchAlsup1) - 2025-06-14 17:02 +0000
                Re: Why I've Dropped In quadibloc <quadibloc@gmail.com> - 2025-06-14 21:19 +0000
                Re: fitting programs in Why I've Dropped In John Levine <johnl@taugh.com> - 2025-06-14 22:12 +0000
                Re: Why I've Dropped In Stephen Fuld <sfuld@alumni.cmu.edu.invalid> - 2025-06-14 20:51 -0700
                Re: base and bounds, Why I've Dropped In John Levine <johnl@taugh.com> - 2025-06-15 18:08 +0000
                Re: base and bounds, Why I've Dropped In Stephen Fuld <sfuld@alumni.cmu.edu.invalid> - 2025-06-15 12:38 -0700
                Re: old and slow base and bounds, Why I've Dropped In John Levine <johnl@taugh.com> - 2025-06-15 20:20 +0000
                Re: old and slow base and bounds, Why I've Dropped In Al Kossow <aek@bitsavers.org> - 2025-06-15 18:48 -0700
                Re: old and slow base and bounds, Why I've Dropped In Stephen Fuld <sfuld@alumni.cmu.edu.invalid> - 2025-06-18 10:35 -0700
                Re: old and slow base and bounds, Why I've Dropped In John Levine <johnl@taugh.com> - 2025-06-18 19:51 +0000
                Re: old and slow base and bounds, Why I've Dropped In Stephen Fuld <sfuld@alumni.cmu.edu.invalid> - 2025-06-18 15:30 -0700
                Re: old and slow base and bounds, Why I've Dropped In John Levine <johnl@taugh.com> - 2025-06-19 01:23 +0000
                Re: old and slow base and bounds, Why I've Dropped In Stephen Fuld <sfuld@alumni.cmu.edu.invalid> - 2025-06-18 19:41 -0700
                Re: old and slow base and bounds, Why I've Dropped In quadibloc <quadibloc@gmail.com> - 2025-06-19 05:36 +0000
                Re: old and slow base and bounds, Why I've Dropped In Stephen Fuld <sfuld@alumni.cmu.edu.invalid> - 2025-06-18 23:10 -0700
                Re: old and slow base and bounds, Why I've Dropped In EricP <ThatWouldBeTelling@thevillage.com> - 2025-06-19 09:35 -0400
                Re: old and slow base and bounds, Why I've Dropped In Thomas Koenig <tkoenig@netcologne.de> - 2025-06-19 15:11 +0000
                Re: Fortran, old and slow base and bounds, Why I've Dropped In John Levine <johnl@taugh.com> - 2025-06-19 18:03 +0000
                Re: old and slow base and bounds, Why I've Dropped In quadibloc <quadibloc@gmail.com> - 2025-06-19 18:53 +0000
                Re: old and slow base and bounds, Why I've Dropped In mitchalsup@aol.com (MitchAlsup1) - 2025-06-19 23:18 +0000
                Re: old and slow base and bounds, Why I've Dropped In EricP <ThatWouldBeTelling@thevillage.com> - 2025-06-20 15:13 -0400
                Re: old and slow base and bounds, Why I've Dropped In Thomas Koenig <tkoenig@netcologne.de> - 2025-06-20 20:35 +0000
                Re: old and slow base and bounds, Why I've Dropped In mitchalsup@aol.com (MitchAlsup1) - 2025-06-20 21:27 +0000
                Re: old and slow base and bounds, Why I've Dropped In mitchalsup@aol.com (MitchAlsup1) - 2025-06-20 21:09 +0000
                Re: old and slow base and bounds, Why I've Dropped In mitchalsup@aol.com (MitchAlsup1) - 2025-06-20 21:48 +0000
                Re: old and slow base and bounds, Why I've Dropped In EricP <ThatWouldBeTelling@thevillage.com> - 2025-06-21 14:57 -0400
                Re: old and slow base and bounds, Why I've Dropped In mitchalsup@aol.com (MitchAlsup1) - 2025-06-19 23:36 +0000
                Re: old and slow base and bounds, Why I've Dropped In John Levine <johnl@taugh.com> - 2025-06-20 01:32 +0000
                Re: old and slow base and bounds, Why I've Dropped In quadibloc <quadibloc@gmail.com> - 2025-06-20 13:45 +0000
                Re: old and slow base and bounds, Why I've Dropped In Thomas Koenig <tkoenig@netcologne.de> - 2025-06-20 17:19 +0000
                Re: old and slow base and bounds, Why I've Dropped In John Levine <johnl@taugh.com> - 2025-06-20 18:06 +0000
                Re: old and slow base and bounds, Why I've Dropped In Thomas Koenig <tkoenig@netcologne.de> - 2025-06-20 18:31 +0000
                Re: old and slow base and bounds, Why I've Dropped In Stephen Fuld <sfuld@alumni.cmu.edu.invalid> - 2025-06-20 12:27 -0700
                Re: emulation, old and slow base and bounds, Why I've Dropped In John Levine <johnl@taugh.com> - 2025-06-20 20:16 +0000
                Re: emulation, old and slow base and bounds, Why I've Dropped In Thomas Koenig <tkoenig@netcologne.de> - 2025-06-20 20:47 +0000
                Re: old and slow base and bounds, Why I've Dropped In Thomas Koenig <tkoenig@netcologne.de> - 2025-06-20 21:26 +0000
                Re: old and slow base and bounds, Why I've Dropped In scott@slp53.sl.home (Scott Lurndal) - 2025-06-21 14:33 +0000
                Re: old and slow base and bounds, Why I've Dropped In mitchalsup@aol.com (MitchAlsup1) - 2025-06-20 21:34 +0000
                Re: old and slow base and bounds, Why I've Dropped In quadibloc <quadibloc@gmail.com> - 2025-06-20 23:57 +0000
                Re: old and slow base and bounds, Why I've Dropped In quadibloc <quadibloc@gmail.com> - 2025-06-21 00:06 +0000
                Re: old and slow base and bounds, Why I've Dropped In quadibloc <quadibloc@gmail.com> - 2025-06-21 00:13 +0000
                Re: old and slow base and bounds, Why I've Dropped In Stephen Fuld <sfuld@alumni.cmu.edu.invalid> - 2025-06-20 23:20 -0700
                Re: old and slow base and bounds, Why I've Dropped In quadibloc <quadibloc@gmail.com> - 2025-06-21 07:40 +0000
                Killer Micros (was: old and slow base and bounds) anton@mips.complang.tuwien.ac.at (Anton Ertl) - 2025-06-21 09:56 +0000
                Re: old and slow base and bounds, Why I've Dropped In antispam@fricas.org (Waldek Hebisch) - 2025-06-21 14:25 +0000
                Re: old and slow base and bounds, Why I've Dropped In Stefan Monnier <monnier@iro.umontreal.ca> - 2025-06-21 11:39 -0400
                Re: old and slow base and bounds, Why I've Dropped In Vir Campestris <vir.campestris@invalid.invalid> - 2025-06-21 16:50 +0100
                Re: mainframe vs mini, old and slow base and bounds, Why I've Dropped In John Levine <johnl@taugh.com> - 2025-06-21 17:59 +0000
                Re: mainframe vs mini, old and slow base and bounds, Why I've Dropped In mitchalsup@aol.com (MitchAlsup1) - 2025-06-21 18:26 +0000
                Re: mainframe vs mini, old and slow base and bounds, Why I've Dropped In John Levine <johnl@taugh.com> - 2025-06-21 19:37 +0000
                Re: mainframe vs mini, old and slow base and bounds, Why I've Dropped In Lars Poulsen <lars@cleo.beagle-ears.com> - 2025-06-21 20:27 +0000
                Re: mainframe vs mini, old and slow base and bounds, Why I've Dropped In John Levine <johnl@taugh.com> - 2025-06-21 20:31 +0000
                Re: mainframe vs mini, old and slow base and bounds, Why I've Dropped In mitchalsup@aol.com (MitchAlsup1) - 2025-06-21 20:36 +0000
                Re: mainframe vs mini, old and slow base and bounds, Why I've Dropped In "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-06-21 14:27 -0700
                Re: mainframe vs mini, old and slow base and bounds, Why I've Dropped In Terje Mathisen <terje.mathisen@tmsw.no> - 2025-06-24 09:45 +0200
                Re: mainframe vs mini, old and slow base and bounds, Why I've Dropped In Thomas Koenig <tkoenig@netcologne.de> - 2025-06-22 06:34 +0000
                Re: mainframe vs mini, old and slow base and bounds, Why I've Dropped In Andreas Eder <a_eder_muc@web.de> - 2025-06-22 11:52 +0200
                Re: mainframe vs mini, old and slow base and bounds, Why I've Dropped In quadibloc <quadibloc@gmail.com> - 2025-06-22 00:55 +0000
                Re: mainframe vs mini, old and slow base and bounds, Why I've Dropped In Vir Campestris <vir.campestris@invalid.invalid> - 2025-07-01 14:22 +0100
                Re: mainframe vs mini, old and slow base and bounds, Why I've Dropped In John Levine <johnl@taugh.com> - 2025-07-01 17:39 +0000
                Re: mainframe vs mini, old and slow base and bounds, Why I've Dropped In scott@slp53.sl.home (Scott Lurndal) - 2025-07-01 18:00 +0000
                Re: mainframe vs mini, old and slow base and bounds, Why I've Dropped In antispam@fricas.org (Waldek Hebisch) - 2025-06-22 20:23 +0000
                Re: mainframe vs mini, old and slow base and bounds, Why I've Dropped In Lynn Wheeler <lynn@garlic.com> - 2025-06-22 12:15 -1000
                Re: mainframe vs mini, old and slow base and bounds, Why I've Dropped In quadibloc <quadibloc@gmail.com> - 2025-06-22 22:44 +0000
                Re: mainframe vs mini, old and slow base and bounds, Why I've Dropped In EricP <ThatWouldBeTelling@thevillage.com> - 2025-06-23 09:23 -0400
                Re: mainframe vs mini, old and slow base and bounds, Why I've Dropped In quadibloc <quadibloc@gmail.com> - 2025-06-23 20:04 +0000
                Re: mainframe vs mini, old and slow base and bounds, Why I've Dropped In John Levine <johnl@taugh.com> - 2025-06-23 23:16 +0000
                Re: mainframe vs mini, old and slow base and bounds, Why I've Dropped In Al Kossow <aek@bitsavers.org> - 2025-06-23 17:02 -0700
                Re: mainframe vs mini, old and slow base and bounds, Why I've Dropped In quadibloc <quadibloc@gmail.com> - 2025-06-24 00:25 +0000
                Re: mainframe vs mini, old and slow base and bounds, Why I've Dropped In mitchalsup@aol.com (MitchAlsup1) - 2025-06-24 00:53 +0000
                Re: mainframe vs mini, old and slow base and bounds, Why I've Dropped In quadibloc <quadibloc@gmail.com> - 2025-06-24 02:49 +0000
                Re: mainframe vs mini, old and slow base and bounds, Why I've Dropped In Thomas Koenig <tkoenig@netcologne.de> - 2025-06-24 06:21 +0000
                Re: mainframe vs mini, old and slow base and bounds, Why I've Dropped In Terje Mathisen <terje.mathisen@tmsw.no> - 2025-06-24 09:59 +0200
                Re: mainframe vs mini, old and slow base and bounds, Why I've Dropped In Thomas Koenig <tkoenig@netcologne.de> - 2025-06-24 06:16 +0000
                Re: mainframe vs mini, old and slow base and bounds, Why I've Dropped In antispam@fricas.org (Waldek Hebisch) - 2025-06-24 14:12 +0000
                Re: mainframe vs mini, old and slow base and bounds, Why I've Dropped In Al Kossow <aek@bitsavers.org> - 2025-06-24 07:43 -0700
                Re: mainframe vs mini, old and slow base and bounds, Why I've Dropped In quadibloc <quadibloc@gmail.com> - 2025-06-24 14:53 +0000
                Re: mainframe vs mini, old and slow base and bounds, Why I've Dropped In scott@slp53.sl.home (Scott Lurndal) - 2025-06-24 14:48 +0000
                Re: mainframe vs mini, old and slow base and bounds, Why I've Dropped In EricP <ThatWouldBeTelling@thevillage.com> - 2025-06-24 13:01 -0400
                Re: old and slow base and bounds, Why I've Dropped In quadibloc <quadibloc@gmail.com> - 2025-06-21 17:49 +0000
                Re: old and slow base and bounds, Why I've Dropped In scott@slp53.sl.home (Scott Lurndal) - 2025-06-21 14:36 +0000
                Re: old and slow base and bounds, Why I've Dropped In mitchalsup@aol.com (MitchAlsup1) - 2025-06-19 13:37 +0000
                Re: old and slow base and bounds, Why I've Dropped In John Levine <johnl@taugh.com> - 2025-06-19 17:52 +0000
                Re: old and slow base and bounds, Why I've Dropped In quadibloc <quadibloc@gmail.com> - 2025-06-19 19:00 +0000
                Re: old and slow base and bounds, Why I've Dropped In Stephen Fuld <sfuld@alumni.cmu.edu.invalid> - 2025-06-20 07:42 -0700
                Re: cramming 24 bits of address into 16 bits, was old and slow base and bounds John Levine <johnl@taugh.com> - 2025-06-20 18:40 +0000
                Re: cramming 24 bits of address into 16 bits, was old and slow base and bounds EricP <ThatWouldBeTelling@thevillage.com> - 2025-06-20 17:15 -0400
                Re: cramming 24 bits of address into 16 bits, was old and slow base and bounds Thomas Koenig <tkoenig@netcologne.de> - 2025-06-20 21:30 +0000
                Re: cramming 24 bits of address into 16 bits, was old and slow base and bounds John Levine <johnl@taugh.com> - 2025-06-21 17:21 +0000
                Re: cramming 24 bits of address into 16 bits, was old and slow base and bounds EricP <ThatWouldBeTelling@thevillage.com> - 2025-06-21 15:46 -0400
                Re: cramming 24 bits of address into 16 bits, was old and slow base and bounds Stephen Fuld <sfuld@alumni.cmu.edu.invalid> - 2025-06-21 22:42 -0700
                Re: cramming 24 bits of address into 16 bits, was old and slow base and bounds Stephen Fuld <sfuld@alumni.cmu.edu.invalid> - 2025-06-24 10:58 -0700
                Re: cramming 24 bits of address into 16 bits, was old and slow base and bounds John Levine <johnl@taugh.com> - 2025-06-24 19:31 +0000
                Re: old and slow base and bounds, Why I've Dropped In Stephen Fuld <sfuld@alumni.cmu.edu.invalid> - 2025-06-19 12:36 -0700
                Re: old and slow base and bounds, Why I've Dropped In John Levine <johnl@taugh.com> - 2025-06-19 21:45 +0000
                Re: old and slow base and bounds, Why I've Dropped In Stephen Fuld <sfuld@alumni.cmu.edu.invalid> - 2025-06-19 16:05 -0700
                Re: old and slow base and bounds, Why I've Dropped In mitchalsup@aol.com (MitchAlsup1) - 2025-06-19 23:45 +0000
                Re: old and slow base and bounds, Why I've Dropped In quadibloc <quadibloc@gmail.com> - 2025-06-20 14:51 +0000
                Re: old and slow base and bounds, Why I've Dropped In mitchalsup@aol.com (MitchAlsup1) - 2025-06-20 15:55 +0000
                Re: old and slow base and bounds, Why I've Dropped In Thomas Koenig <tkoenig@netcologne.de> - 2025-06-19 20:25 +0000
                Re: old and slow base and bounds, Why I've Dropped In Thomas Koenig <tkoenig@netcologne.de> - 2025-06-19 12:12 +0000
                Re: old and slow base and bounds, Why I've Dropped In EricP <ThatWouldBeTelling@thevillage.com> - 2025-06-19 10:32 -0400
                Re: old and slow base and bounds, Why I've Dropped In Thomas Koenig <tkoenig@netcologne.de> - 2025-06-19 14:54 +0000
                Re: old and slow base and bounds, Why I've Dropped In EricP <ThatWouldBeTelling@thevillage.com> - 2025-06-19 20:36 -0400
                Re: old and slow base and bounds, Why I've Dropped In John Levine <johnl@taugh.com> - 2025-06-20 01:10 +0000
                Re: old and slow base and bounds, Why I've Dropped In mitchalsup@aol.com (MitchAlsup1) - 2025-06-20 01:15 +0000
                Re: old and slow base and bounds, Why I've Dropped In antispam@fricas.org (Waldek Hebisch) - 2025-06-21 12:04 +0000
                Re: old and slow base and bounds, Why I've Dropped In Thomas Koenig <tkoenig@netcologne.de> - 2025-06-21 20:32 +0000
                Re: old and slow base and bounds, Why I've Dropped In antispam@fricas.org (Waldek Hebisch) - 2025-06-22 01:26 +0000
                Re: old and slow base and bounds, Why I've Dropped In John Levine <johnl@taugh.com> - 2025-06-22 01:36 +0000
                Re: old and slow base and bounds, Why I've Dropped In Thomas Koenig <tkoenig@netcologne.de> - 2025-06-22 08:57 +0000
                Re: linking and sortiing, old and slow base and bounds, John Levine <johnl@taugh.com> - 2025-06-22 17:52 +0000
                Re: linking and sortiing, old and slow base and bounds, mitchalsup@aol.com (MitchAlsup1) - 2025-06-22 18:25 +0000
                Re: linking and sortiing, old and slow base and bounds, scott@slp53.sl.home (Scott Lurndal) - 2025-06-22 20:29 +0000
                Re: tape hacks, linking and sortiing John Levine <johnl@taugh.com> - 2025-06-22 22:44 +0000
                Re: linking and sortiing, old and slow base and bounds, Thomas Koenig <tkoenig@netcologne.de> - 2025-06-23 06:07 +0000
                Re: linking and sortiing, old and slow base and bounds, quadibloc <quadibloc@gmail.com> - 2025-06-23 09:56 +0000
                Re: linking and sortiing, old and slow base and bounds, quadibloc <quadibloc@gmail.com> - 2025-06-23 10:01 +0000
                Re: linking and sortiing, old and slow base and bounds, Thomas Koenig <tkoenig@netcologne.de> - 2025-06-23 17:13 +0000
                Re: old and slow base and bounds, Why I've Dropped In John Levine <johnl@taugh.com> - 2025-06-22 01:31 +0000
                Re: Why I've Dropped In mitchalsup@aol.com (MitchAlsup1) - 2025-06-14 17:00 +0000
                Re: Why I've Dropped In Thomas Koenig <tkoenig@netcologne.de> - 2025-06-14 17:30 +0000
                Re: Why I've Dropped In mitchalsup@aol.com (MitchAlsup1) - 2025-06-14 18:39 +0000
                Re: Why I've Dropped In Thomas Koenig <tkoenig@netcologne.de> - 2025-06-13 17:42 +0000
                Re: Why I've Dropped In Stephen Fuld <sfuld@alumni.cmu.edu.invalid> - 2025-06-13 11:00 -0700
                Re: Why I've Dropped In quadibloc <quadibloc@gmail.com> - 2025-06-14 16:04 +0000
                Re: Why I've Dropped In quadibloc <quadibloc@gmail.com> - 2025-06-14 16:12 +0000
                Re: Why I've Dropped In mitchalsup@aol.com (MitchAlsup1) - 2025-06-14 16:50 +0000
                Re: base registers and addres size, Why I've Dropped In John Levine <johnl@taugh.com> - 2025-06-14 22:02 +0000
                Re: base registers and addres size, Why I've Dropped In mitchalsup@aol.com (MitchAlsup1) - 2025-06-14 22:58 +0000
                Re: base registers and addres size, Why I've Dropped In John Levine <johnl@taugh.com> - 2025-06-15 01:08 +0000
                Re: Why I've Dropped In Lynn Wheeler <lynn@garlic.com> - 2025-06-17 16:47 -1000
                Re: Why I've Dropped In scott@slp53.sl.home (Scott Lurndal) - 2025-06-18 13:48 +0000
                Re: Why I've Dropped In BGB <cr88192@gmail.com> - 2025-06-13 17:52 -0500
                Re: Why I've Dropped In quadibloc <quadibloc@gmail.com> - 2025-06-14 04:04 +0000
                Re: Why I've Dropped In Thomas Koenig <tkoenig@netcologne.de> - 2025-06-14 10:45 +0000
            Re: Why I've Dropped In anton@mips.complang.tuwien.ac.at (Anton Ertl) - 2025-06-11 17:33 +0000
              Re: Why I've Dropped In quadibloc <quadibloc@gmail.com> - 2025-06-11 18:14 +0000
                Re: Why I've Dropped In "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-06-11 12:30 -0700
                Re: Why I've Dropped In "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-06-11 12:31 -0700
                Re: Why I've Dropped In quadibloc <quadibloc@gmail.com> - 2025-06-12 02:17 +0000
                Re: Why I've Dropped In "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-06-12 11:55 -0700
                Re: Why I've Dropped In quadibloc <quadibloc@gmail.com> - 2025-06-13 03:30 +0000
                Re: Why I've Dropped In quadibloc <quadibloc@gmail.com> - 2025-06-13 20:40 +0000
                Re: Why I've Dropped In "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-06-15 16:56 -0700
                Re: Why I've Dropped In mitchalsup@aol.com (MitchAlsup1) - 2025-06-11 21:26 +0000
                Re: Why I've Dropped In anton@mips.complang.tuwien.ac.at (Anton Ertl) - 2025-06-12 06:30 +0000
                Re: Why I've Dropped In quadibloc <quadibloc@gmail.com> - 2025-06-12 07:57 +0000
                Re: Why I've Dropped In quadibloc <quadibloc@gmail.com> - 2025-06-12 14:06 +0000
                Re: Why I've Dropped In scott@slp53.sl.home (Scott Lurndal) - 2025-06-12 13:43 +0000
                Re: Why I've Dropped In anton@mips.complang.tuwien.ac.at (Anton Ertl) - 2025-06-13 07:31 +0000
                Re: Why I've Dropped In scott@slp53.sl.home (Scott Lurndal) - 2025-06-13 14:48 +0000
                Re: Why I've Dropped In anton@mips.complang.tuwien.ac.at (Anton Ertl) - 2025-06-13 15:38 +0000
                Re: Why I've Dropped In Thomas Koenig <tkoenig@netcologne.de> - 2025-06-13 17:10 +0000
                Re: Why I've Dropped In antispam@fricas.org (Waldek Hebisch) - 2025-06-17 11:44 +0000
                Re: Why I've Dropped In David Brown <david.brown@hesbynett.no> - 2025-06-17 16:00 +0200
                Code density (was: Why I've Dropped In) anton@mips.complang.tuwien.ac.at (Anton Ertl) - 2025-06-17 14:17 +0000
                Re: Code density (was: Why I've Dropped In) scott@slp53.sl.home (Scott Lurndal) - 2025-06-17 15:11 +0000
                Re: Code density mitchalsup@aol.com (MitchAlsup1) - 2025-06-17 18:01 +0000
                Re: Code density EricP <ThatWouldBeTelling@thevillage.com> - 2025-06-17 23:55 -0400
                Re: Code density anton@mips.complang.tuwien.ac.at (Anton Ertl) - 2025-06-18 06:22 +0000
                Re: Code density EricP <ThatWouldBeTelling@thevillage.com> - 2025-06-18 09:32 -0400
                Re: Code density "Kerr-Mudd, John" <admin@127.0.0.1> - 2025-06-18 16:19 +0100
                Re: Code density mitchalsup@aol.com (MitchAlsup1) - 2025-06-18 18:27 +0000
                Re: Code density anton@mips.complang.tuwien.ac.at (Anton Ertl) - 2025-06-19 09:21 +0000
                Re: Code density EricP <ThatWouldBeTelling@thevillage.com> - 2025-06-22 10:05 -0400
                Re: Code density mitchalsup@aol.com (MitchAlsup1) - 2025-06-22 17:35 +0000
                Re: Code density scott@slp53.sl.home (Scott Lurndal) - 2025-06-22 20:26 +0000
                Re: Code density mitchalsup@aol.com (MitchAlsup1) - 2025-06-26 01:12 +0000
                Re: Code density scott@slp53.sl.home (Scott Lurndal) - 2025-06-26 15:17 +0000
                Re: Code density EricP <ThatWouldBeTelling@thevillage.com> - 2025-06-27 07:48 -0400
                Re: Code density EricP <ThatWouldBeTelling@thevillage.com> - 2025-06-27 08:33 -0400
                Re: Code density Stephen Fuld <sfuld@alumni.cmu.edu.invalid> - 2025-06-27 22:41 -0700
                Re: Code density Thomas Koenig <tkoenig@netcologne.de> - 2025-06-28 07:45 +0000
                Re: Code density anton@mips.complang.tuwien.ac.at (Anton Ertl) - 2025-06-28 11:11 +0000
                Re: Code density Thomas Koenig <tkoenig@netcologne.de> - 2025-06-28 12:00 +0000
                Re: Code density mitchalsup@aol.com (MitchAlsup1) - 2025-06-28 16:01 +0000
                Re: Code density Thomas Koenig <tkoenig@netcologne.de> - 2025-06-29 14:54 +0000
                Re: Code density Terje Mathisen <terje.mathisen@tmsw.no> - 2025-06-29 18:01 +0200
                Re: Code density mitchalsup@aol.com (MitchAlsup1) - 2025-06-29 20:50 +0000
                Re: Code density EricP <ThatWouldBeTelling@thevillage.com> - 2025-06-29 13:21 -0400
                Re: Code density Thomas Koenig <tkoenig@netcologne.de> - 2025-06-29 20:41 +0000
                Re: Code density George Neuner <gneuner2@comcast.net> - 2025-06-28 08:05 -0400
                Re: Code density "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-06-28 21:29 -0700
                Re: Code density scott@slp53.sl.home (Scott Lurndal) - 2025-06-27 13:55 +0000
                Re: Code density EricP <ThatWouldBeTelling@thevillage.com> - 2025-06-27 15:09 -0400
                Re: Code density scott@slp53.sl.home (Scott Lurndal) - 2025-06-27 21:01 +0000
                Re: Code density Thomas Koenig <tkoenig@netcologne.de> - 2025-06-28 09:07 +0000
                Re: Code density John Levine <johnl@taugh.com> - 2025-06-28 16:30 +0000
                Re: errno, Code density John Levine <johnl@taugh.com> - 2025-06-27 21:44 +0000
                Re: errno, Code density EricP <ThatWouldBeTelling@thevillage.com> - 2025-06-29 14:02 -0400
                Re: errno, Code density anton@mips.complang.tuwien.ac.at (Anton Ertl) - 2025-06-30 06:21 +0000
                Re: errno, Code density EricP <ThatWouldBeTelling@thevillage.com> - 2025-06-30 12:51 -0400
                Re: errno, Code density scott@slp53.sl.home (Scott Lurndal) - 2025-06-30 17:13 +0000
                Re: errno, Code density Michael S <already5chosen@yahoo.com> - 2025-07-01 13:11 +0300
                Re: errno, Code density scott@slp53.sl.home (Scott Lurndal) - 2025-07-01 13:18 +0000
                Re: errno, Code density Michael S <already5chosen@yahoo.com> - 2025-07-01 16:21 +0300
                Re: errno, Code density Michael S <already5chosen@yahoo.com> - 2025-07-01 16:28 +0300
                Re: errno, Code density scott@slp53.sl.home (Scott Lurndal) - 2025-07-01 14:08 +0000
                Re: errno, Code density EricP <ThatWouldBeTelling@thevillage.com> - 2025-07-01 11:09 -0400
                Re: assemblers, errno, Code density John Levine <johnl@taugh.com> - 2025-07-01 17:41 +0000
                Re: errno, Code density mitchalsup@aol.com (MitchAlsup1) - 2025-06-30 17:11 +0000
                Re: errno, Code density EricP <ThatWouldBeTelling@thevillage.com> - 2025-07-02 08:06 -0400
                Re: errno, Code density mitchalsup@aol.com (MitchAlsup1) - 2025-07-02 15:38 +0000
                Re: errno, Code density Michael S <already5chosen@yahoo.com> - 2025-06-30 13:55 +0300
                Re: Code density George Neuner <gneuner2@comcast.net> - 2025-06-28 07:02 -0400
                Re: Code density anton@mips.complang.tuwien.ac.at (Anton Ertl) - 2025-06-30 16:08 +0000
                Re: Code density anton@mips.complang.tuwien.ac.at (Anton Ertl) - 2025-07-01 16:08 +0000
                Re: Code density mitchalsup@aol.com (MitchAlsup1) - 2025-07-01 20:03 +0000
                Re: Code density scott@slp53.sl.home (Scott Lurndal) - 2025-07-01 21:07 +0000
                Re: Code density mitchalsup@aol.com (MitchAlsup1) - 2025-07-01 23:20 +0000
                Re: Code density John Levine <johnl@taugh.com> - 2025-07-02 17:14 +0000
                Re: Code density EricP <ThatWouldBeTelling@thevillage.com> - 2025-07-02 15:38 -0400
                Re: Code density EricP <ThatWouldBeTelling@thevillage.com> - 2025-07-03 08:41 -0400
                Re: Code density mitchalsup@aol.com (MitchAlsup1) - 2025-07-16 01:18 +0000
                Re: Code density anton@mips.complang.tuwien.ac.at (Anton Ertl) - 2025-07-02 05:25 +0000
                Re: Code density mitchalsup@aol.com (MitchAlsup1) - 2025-07-01 21:49 +0000
                Re: Code density scott@slp53.sl.home (Scott Lurndal) - 2025-07-01 23:26 +0000
                Re: Code density mitchalsup@aol.com (MitchAlsup1) - 2025-07-02 00:04 +0000
                Re: Code density anton@mips.complang.tuwien.ac.at (Anton Ertl) - 2025-07-02 05:18 +0000
                Re: Code density EricP <ThatWouldBeTelling@thevillage.com> - 2025-07-02 11:20 -0400
                Re: Code density mitchalsup@aol.com (MitchAlsup1) - 2025-07-02 15:45 +0000
                Re: Code density scott@slp53.sl.home (Scott Lurndal) - 2025-07-02 16:56 +0000
                Re: Code density mitchalsup@aol.com (MitchAlsup1) - 2025-07-02 17:06 +0000
                Re: Code density anton@mips.complang.tuwien.ac.at (Anton Ertl) - 2025-06-18 06:26 +0000
                Re: Code density BGB <cr88192@gmail.com> - 2025-07-01 01:16 -0500
                Re: Code density anton@mips.complang.tuwien.ac.at (Anton Ertl) - 2025-07-01 15:23 +0000
                Re: Code density BGB <cr88192@gmail.com> - 2025-07-01 10:53 -0500
            Re: Why I've Dropped In EricP <ThatWouldBeTelling@thevillage.com> - 2025-06-11 14:56 -0400
              Re: Why I've Dropped In quadibloc <quadibloc@gmail.com> - 2025-06-11 19:37 +0000
                Re: Why I've Dropped In mitchalsup@aol.com (MitchAlsup1) - 2025-06-12 19:01 +0000
                Re: Why I've Dropped In quadibloc <quadibloc@gmail.com> - 2025-06-13 20:12 +0000
                Re: Why I've Dropped In mitchalsup@aol.com (MitchAlsup1) - 2025-06-13 20:50 +0000
              Re: Why I've Dropped In mitchalsup@aol.com (MitchAlsup1) - 2025-06-11 21:17 +0000
                Re: Why I've Dropped In scott@slp53.sl.home (Scott Lurndal) - 2025-06-11 21:35 +0000
                Re: Why I've Dropped In mitchalsup@aol.com (MitchAlsup1) - 2025-06-11 23:13 +0000
                Re: Why I've Dropped In scott@slp53.sl.home (Scott Lurndal) - 2025-06-12 13:41 +0000
                Re: Why I've Dropped In EricP <ThatWouldBeTelling@thevillage.com> - 2025-06-12 09:38 -0400
                Re: Why I've Dropped In mitchalsup@aol.com (MitchAlsup1) - 2025-06-12 19:19 +0000
                Re: Why I've Dropped In "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-06-12 12:25 -0700
                Re: Why I've Dropped In "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-06-12 12:27 -0700
                Re: Why I've Dropped In anton@mips.complang.tuwien.ac.at (Anton Ertl) - 2025-06-13 07:03 +0000
                Re: Why I've Dropped In quadibloc <quadibloc@gmail.com> - 2025-06-13 20:01 +0000
                Re: Why I've Dropped In Robert Finch <robfi680@gmail.com> - 2025-06-14 04:35 -0400
                Re: Why I've Dropped In quadibloc <quadibloc@gmail.com> - 2025-06-14 15:22 +0000
                Re: Why I've Dropped In Thomas Koenig <tkoenig@netcologne.de> - 2025-06-14 17:30 +0000
                Re: Why I've Dropped In Terje Mathisen <terje.mathisen@tmsw.no> - 2025-06-20 17:11 +0200
                Re: Why I've Dropped In Stefan Monnier <monnier@iro.umontreal.ca> - 2025-06-20 12:43 -0400
                Re: Why I've Dropped In mitchalsup@aol.com (MitchAlsup1) - 2025-06-20 17:38 +0000
                Re: Why I've Dropped In Stefan Monnier <monnier@iro.umontreal.ca> - 2025-06-20 13:48 -0400
                Re: Why I've Dropped In mitchalsup@aol.com (MitchAlsup1) - 2025-06-20 20:46 +0000
                Re: Why I've Dropped In Stefan Monnier <monnier@iro.umontreal.ca> - 2025-06-20 18:13 -0400
                Re: Why I've Dropped In antispam@fricas.org (Waldek Hebisch) - 2025-06-21 01:48 +0000
                Re: Why I've Dropped In mitchalsup@aol.com (MitchAlsup1) - 2025-06-21 02:51 +0000
                Re: Why I've Dropped In Terje Mathisen <terje.mathisen@tmsw.no> - 2025-06-24 08:15 +0200
                Re: Why I've Dropped In "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-06-12 12:06 -0700
                Re: Why I've Dropped In EricP <ThatWouldBeTelling@thevillage.com> - 2025-06-12 09:12 -0400
                Re: Why I've Dropped In mitchalsup@aol.com (MitchAlsup1) - 2025-06-12 18:55 +0000
                Re: Why I've Dropped In Thomas Koenig <tkoenig@netcologne.de> - 2025-06-12 20:50 +0000
        Re: Why I've Dropped In quadibloc <quadibloc@gmail.com> - 2025-06-11 15:29 +0000
          Re: Why I've Dropped In quadibloc <quadibloc@gmail.com> - 2025-06-11 17:22 +0000
            Re: Why I've Dropped In quadibloc <quadibloc@gmail.com> - 2025-06-23 03:43 +0000
              The Third Wish quadibloc <quadibloc@gmail.com> - 2025-06-23 12:43 +0000
                Re: The Third Wish quadibloc <quadibloc@gmail.com> - 2025-06-23 12:47 +0000
                Re: The Third Wish quadibloc <quadibloc@gmail.com> - 2025-06-24 17:19 +0000
                Re: The Third Wish mitchalsup@aol.com (MitchAlsup1) - 2025-06-24 21:57 +0000
                Re: The Third Wish John Savard <quadibloc@invalid.invalid> - 2025-06-25 07:31 +0000
                Re: The Third Wish John Savard <quadibloc@invalid.invalid> - 2025-06-27 05:28 +0000
                Re: The Third Wish John Savard <quadibloc@invalid.invalid> - 2025-07-02 05:16 +0000
                Re: The Third Wish John Savard <quadibloc@invalid.invalid> - 2025-07-02 07:04 +0000
                Re: The Third Wish John Savard <quadibloc@invalid.invalid> - 2025-07-03 05:52 +0000
                Re: The Third Wish Stephen Fuld <sfuld@alumni.cmu.edu.invalid> - 2025-07-02 22:57 -0700
                Re: The Third Wish Thomas Koenig <tkoenig@netcologne.de> - 2025-07-03 06:59 +0000
                Re: The Third Wish John Savard <quadibloc@invalid.invalid> - 2025-07-03 09:43 +0000
                Re: The Third Wish John Savard <quadibloc@invalid.invalid> - 2025-07-03 11:24 +0000
                Re: The Third Wish John Savard <quadibloc@invalid.invalid> - 2025-07-03 11:35 +0000
                Re: The Third Wish mitchalsup@aol.com (MitchAlsup1) - 2025-07-16 01:11 +0000
                Re: The Third Wish mitchalsup@aol.com (MitchAlsup1) - 2025-07-16 01:08 +0000
                Re: The Third Wish mitchalsup@aol.com (MitchAlsup1) - 2025-07-16 18:22 +0000
                Re: The Third Wish John Savard <quadibloc@invalid.invalid> - 2025-07-16 23:36 +0000
                Re: The Third Wish mitchalsup@aol.com (MitchAlsup1) - 2025-07-16 23:58 +0000
                Re: The Third Wish John Savard <quadibloc@invalid.invalid> - 2025-07-17 03:42 +0000
                Re: The Third Wish John Savard <quadibloc@invalid.invalid> - 2025-07-17 04:01 +0000
                Re: The Third Wish John Savard <quadibloc@invalid.invalid> - 2025-07-17 04:10 +0000
                Re: The Third Wish John Savard <quadibloc@invalid.invalid> - 2025-07-17 04:24 +0000
                Re: The Third Wish mitchalsup@aol.com (MitchAlsup1) - 2025-07-16 18:09 +0000
                Re: The Third Wish John Savard <quadibloc@invalid.invalid> - 2025-07-15 22:24 +0000
                Re: The Third Wish John Savard <quadibloc@invalid.invalid> - 2025-07-16 00:00 +0000
                Re: The Third Wish John Savard <quadibloc@invalid.invalid> - 2025-07-16 00:22 +0000
                Re: The Third Wish John Savard <quadibloc@invalid.invalid> - 2025-07-16 01:49 +0000
                Re: The Third Wish Thomas Koenig <tkoenig@netcologne.de> - 2025-07-16 17:33 +0000
                Re: The Third Wish John Savard <quadibloc@invalid.invalid> - 2025-07-16 23:24 +0000
                Re: The Third Wish John Savard <quadibloc@invalid.invalid> - 2025-07-16 23:26 +0000
                Re: The Third Wish mitchalsup@aol.com (MitchAlsup1) - 2025-07-16 18:06 +0000
                Re: The Third Wish "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-07-16 14:55 -0700
                Re: The Third Wish John Savard <quadibloc@invalid.invalid> - 2025-07-16 12:26 +0000
        Re: Why I've Dropped In quadibloc <quadibloc@gmail.com> - 2025-06-13 10:43 +0000
      Re: Why I've Dropped In quadibloc <quadibloc@gmail.com> - 2025-06-16 03:46 +0000
  Re: Why I've Dropped In quadibloc <quadibloc@gmail.com> - 2025-06-12 15:38 +0000
    Re: Why I've Dropped In mitchalsup@aol.com (MitchAlsup1) - 2025-06-12 19:24 +0000
      Re: Why I've Dropped In quadibloc <quadibloc@gmail.com> - 2025-06-13 00:11 +0000
        Re: Why I've Dropped In BGB <cr88192@gmail.com> - 2025-06-16 17:14 -0500
          Re: Why I've Dropped In mitchalsup@aol.com (MitchAlsup1) - 2025-06-16 23:37 +0000
            Re: Why I've Dropped In quadibloc <quadibloc@gmail.com> - 2025-06-17 01:20 +0000
              Re: Why I've Dropped In mitchalsup@aol.com (MitchAlsup1) - 2025-06-17 17:41 +0000
                Re: Why I've Dropped In quadibloc <quadibloc@gmail.com> - 2025-06-17 17:59 +0000
                Re: Why I've Dropped In BGB <cr88192@gmail.com> - 2025-06-17 14:04 -0500
                Re: Why I've Dropped In mitchalsup@aol.com (MitchAlsup1) - 2025-06-17 21:19 +0000
                Re: Why I've Dropped In BGB <cr88192@gmail.com> - 2025-06-18 01:16 -0500
                Re: Why I've Dropped In Stephen Fuld <sfuld@alumni.cmu.edu.invalid> - 2025-06-17 23:35 -0700
                Re: Why I've Dropped In BGB <cr88192@gmail.com> - 2025-06-18 02:10 -0500
                Re: Why I've Dropped In antispam@fricas.org (Waldek Hebisch) - 2025-06-25 22:24 +0000
                Re: Why I've Dropped In mitchalsup@aol.com (MitchAlsup1) - 2025-06-25 23:00 +0000
                Re: Why I've Dropped In quadibloc <quadibloc@gmail.com> - 2025-06-18 16:09 +0000
                Re: Why I've Dropped In "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2025-06-17 12:45 -0700
                Re: Why I've Dropped In Stefan Monnier <monnier@iro.umontreal.ca> - 2025-06-17 16:51 -0400
                Re: Why I've Dropped In mitchalsup@aol.com (MitchAlsup1) - 2025-06-17 21:11 +0000
                Re: Why I've Dropped In anton@mips.complang.tuwien.ac.at (Anton Ertl) - 2025-06-18 06:58 +0000
                Re: Why I've Dropped In antispam@fricas.org (Waldek Hebisch) - 2025-06-18 14:45 +0000
            Re: Why I've Dropped In BGB <cr88192@gmail.com> - 2025-06-17 01:28 -0500
              Re: Why I've Dropped In quadibloc <quadibloc@gmail.com> - 2025-06-17 12:58 +0000
                Re: Why I've Dropped In quadibloc <quadibloc@gmail.com> - 2025-06-17 13:12 +0000
                Re: Why I've Dropped In mitchalsup@aol.com (MitchAlsup1) - 2025-06-17 17:52 +0000
                Re: Why I've Dropped In scott@slp53.sl.home (Scott Lurndal) - 2025-06-17 18:14 +0000
                Re: Why I've Dropped In Thomas Koenig <tkoenig@netcologne.de> - 2025-06-18 14:10 +0000
                Re: Why I've Dropped In quadibloc <quadibloc@gmail.com> - 2025-06-18 15:14 +0000
                Re: Why I've Dropped In mitchalsup@aol.com (MitchAlsup1) - 2025-06-18 18:16 +0000
                Re: Why I've Dropped In quadibloc <quadibloc@gmail.com> - 2025-06-18 22:00 +0000
                Re: Why I've Dropped In quadibloc <quadibloc@gmail.com> - 2025-06-18 23:20 +0000
                Re: Why I've Dropped In mitchalsup@aol.com (MitchAlsup1) - 2025-06-19 01:03 +0000
                Re: Why I've Dropped In quadibloc <quadibloc@gmail.com> - 2025-06-19 01:32 +0000
                Re: Why I've Dropped In mitchalsup@aol.com (MitchAlsup1) - 2025-06-19 13:17 +0000
                Re: Why I've Dropped In quadibloc <quadibloc@gmail.com> - 2025-06-19 01:46 +0000
                Re: Why I've Dropped In quadibloc <quadibloc@gmail.com> - 2025-06-19 01:52 +0000
                Re: Why I've Dropped In quadibloc <quadibloc@gmail.com> - 2025-06-19 02:29 +0000
                Re: Why I've Dropped In mitchalsup@aol.com (MitchAlsup1) - 2025-06-19 13:26 +0000
                Re: Why I've Dropped In BGB <cr88192@gmail.com> - 2025-06-17 13:34 -0500
                Re: Why I've Dropped In mitchalsup@aol.com (MitchAlsup1) - 2025-06-17 18:52 +0000
                Re: Why I've Dropped In Michael S <already5chosen@yahoo.com> - 2025-06-17 21:58 +0300
                Re: Why I've Dropped In BGB <cr88192@gmail.com> - 2025-06-17 14:13 -0500
                Re: Why I've Dropped In Michael S <already5chosen@yahoo.com> - 2025-06-17 22:33 +0300
      Re: Why I've Dropped In John Savard <quadibloc@invalid.invalid> - 2025-06-28 14:32 +0000
    Re: Why I've Dropped In anton@mips.complang.tuwien.ac.at (Anton Ertl) - 2025-06-13 07:39 +0000
      Re: Why I've Dropped In mitchalsup@aol.com (MitchAlsup1) - 2025-06-13 17:22 +0000
        Re: Why I've Dropped In Robert Finch <robfi680@gmail.com> - 2025-06-14 05:50 -0400
          Re: Why I've Dropped In anton@mips.complang.tuwien.ac.at (Anton Ertl) - 2025-06-14 16:05 +0000
            Re: Why I've Dropped In quadibloc <quadibloc@gmail.com> - 2025-06-14 21:15 +0000

(Thread has 511 articles, showing 500 — browse group in flat view)


csiph-web