VOGONS

Common searches


Search results

Display options

Re: DosBox and OpenSSL

It's not a DOS program, it's a windows console based program. There is a difference. The OpenSSL.exe itself is telling you that it's a windows program when you try to run it under DOSBox. Just run it directly from windows CMD instead.

Re: Let's talk about our hated trends

in Milliways
But I can imagine a scheme were Github just squeezes the vice tighter, and tighter, and tighter, until only established interest can use their platform anymore. Everyone else finds their code flagged as "malicious" by algorithms that are never reviewed by an actual human ever. Might not happen in 5 …

Re: How did scrolling work in Keen 4-6?

in Milliways
Like his follow-up tweet says, "The second Keen trilogy used a better trick -- just keep panning and redrawing the leading edge, letting the screen wrap around at the 64k aperture edge." So instead of only panning within the width of one tile it pans the width of the whole segment.

Re: Problem with FIST/FISTP instructions

Better how ? Just feels a little bit neater/clearer with only one integer comparison against the exponent, since the mantissa value and sign are irrelevant in this case and can be ignored. static void FPU_FST_I16(PhysPt addr) { int exp; double value = FROUND(fpu.regs[TOP].d); frexp(value,&exp); mem …

Re: Problem with FIST/FISTP instructions

Your value for the I64 comparison looks off by one (it's 2^63-1 instead of 2^63), but it probably wouldn't matter anyway since 63 is too many bits of precision to be accurately represented in a double. Using frexp() and checking the range of the exponent might be better?

Page 24 of 65