I've recently written a Wiki article on the Creative Computing benchmark. I was wondering if anyone has examples of it being used outside Creative Computing?
I've found one example in Compute!, but I'd like to add more for balance. Ideally these would be examples of people using it as a contemporary test, but modern examples would add flavour too.
Examples of the Byte Sieve would also be appreciated.
UPDATE: I see I missed some key context: I'm looking for examples of people using the benchmark today to compare retrocomputers. I see many examples of this in blogs and forums, but I don't get around enough the print world outside the Atari space to find examples there.
50 S=0 100 X=0 200 FOR N=1 TO 1000 300 S=S+X*X 400 X=X+0.00123 500 NEXT N 600 PRINT “RESULTS: S=”;S;”, X=”;X 700 PRINT “CORRECT: S=503.543802149, X=1.23”
– Tim Locke Mar 18 '19 at 19:51I also just noticed that Kyan Pascal for the C64 gets the right answer and I had a note stating it uses 64-bit BCD FP (56M, 8E) so this lines up with your point that MSX BASIC uses BCD FP.
Can you confirm whether the Tandy Model 100 and TI-99/4A use BCD? I know they use 64-bit FP. It seems very likely.
– Tim Locke Mar 19 '19 at 15:07