(no title)
JayGuerette | 3 years ago
There were very likely some hacky TSRs that caused problems, but in my experience most were extremely reliable. We used an off-the-shelf TSR to enhance a motion control system that laser scribed ceramic vacuum checks for silicon wafer fabrication. Those things cost $5k in 1990, and took ~20h of processing, increasing their value to $15k; we wouldn't screw around with something that was inherently "extremely unreliable".
nu11ptr|3 years ago
stop_clock: All it did was stop the real time clock of the system from counting up when you pressed the alt key and started it again on a 2nd press. However, this was enough to stop the timer of a typing speed program we used in high school. Magically, I was a VERY fast typist. :-)
stay_on: When you pressed a certain key sequence it would start the floppy drive motor and a 2nd press would turn it off. The goal was to speed up floppy accesses by not needing to spin up the motor all the time. Unfortunately, I got up one day to find my floppy drive motor dead. I suspect I forgot to turn off the motor (there was no idle timeout...I was a kid, never even crossed my mind!)
Falkon1313|3 years ago
Also wrote a couple of TSRs of my own as a kid learning to program. Sure you could crash the system, as you could with any program, but they were as reliable as anything else.
The only thing special was that you generally didn't want to run two TSRs that naively hooked the same interrupt without chaining properly. But back then we didn't have thousands of mysterious background processes always running in the background. You knew what few programs you had run, so it wasn't really a problem.
anyfoo|3 years ago
pizza234|3 years ago
There isn't anything inherently unreliable with TSRs; DOS even provided interrupts for this specific operation (although some malware would not use them).
I think (although not entirely sure) that some mouse drivers were, for example, TSRs.
The problem is that there was a wide range of purposes and implementations, including malware, so the argument is similar to "BTC is mostly used for dirty money, so BTC is inherently criminal".
dfox|3 years ago
dale_glass|3 years ago
Eg, things like a calendar tool trying to pop up a reminder mid-game would often not end well.
lathiat|3 years ago
This froze the windows 95 setup in graphical mode. Although the text prompt appeared for whatever reason the Y/N didn’t work and we could never continue.
So was never able to upgrade that machine.
magicalhippo|3 years ago
Programming TSR's as a teen was where I learned to hit ctrl+s every line, at most!
Was kinda hard to debug given the "terminate" part and the tools at the time.
pinewurst|3 years ago
unknown|3 years ago
[deleted]
AceJohnny2|3 years ago
int_19h|3 years ago
protomolecule|3 years ago