roger
Penultimate Amazing
- Joined
- May 22, 2002
- Messages
- 11,466
Any system will do. In the end, you write ones and zeros into the graphics card memory. I could whip up a little program that takes zeros and ones as input, and dumps the info to the monitor. Away you go.Could we hook up an old Morse code machine so that the human computer could communicate with the outside world? That way we could get the invoice processing system working again.
Of course, this 9 (the screen output) is going to run at the same speed as the algorithm. If I put a really slow clock in your computer running the accounting software, you could wait 3 hours for the screen to update. But update it would.
Piggy, if this is not clear, in C++ you would write cout << 3 to print 3 on the screen. Behind the scenes there is code and hardware that takes the data presented to 'cout' and puts it on the screen. On different hardware necessarily the software and hardware is different. If you do it on your PC with an NVIDIA card, the code and hardware is specialized for the NVIDIA chipset. On a Cray machine, it's specialized for whatever is hooked up to the Cray. So how the '3' gets to the screen is immaterial. So, my little program is a completely acceptable replacement for the combination of C library code and OS code that gets that 3 onto the screen.