Solving differential equations on a 6502 with Woz's floating point code
1–10 of 14 posts
Re: Solving differential equations on a 6502 with Woz's floating point code
#2Re: Solving differential equations on a 6502 with Woz's floating point code
#3Re: Solving differential equations on a 6502 with Woz's floating point code
#4My understanding is his circuit design was similar. One thing, use a part of the circuit for two different things at different points of the clock cycles, so parts count was reduced.
Re: Solving differential equations on a 6502 with Woz's floating point code
#5Having said that, I do like this stuff in hindsight :)
Re: Solving differential equations on a 6502 with Woz's floating point code
#6I find it funny that people enjoy the nostalgia of things like 6502... I loved my Atari 800XL, but wistfully dreamed that computers might one day be able to handle 320x240 with 256 colours.... boy... that would be good! Meanwhile I was hand assembling 6502 into data sections in basic so I could try and draw a circle... who knew drawing circles was so ridculously difficult and slow? Having said that, I do like this st…
Re: Solving differential equations on a 6502 with Woz's floating point code
#7I find it funny that people enjoy the nostalgia of things like 6502... I loved my Atari 800XL, but wistfully dreamed that computers might one day be able to handle 320x240 with 256 colours.... boy... that would be good! Meanwhile I was hand assembling 6502 into data sections in basic so I could try and draw a circle... who knew drawing circles was so ridculously difficult and slow? Having said that, I do like this st…
Were you using a CORDIC algorithm? Bit shifts and adds, no multiplies required.
Re: Solving differential equations on a 6502 with Woz's floating point code
#8Re: Solving differential equations on a 6502 with Woz's floating point code
#9Not the floating point, but saw his code for other parts of the 6502 Apple products, he really was a genius. The code is both very clever AND quite understandable. My understanding is his circuit design was similar. One thing, use a part of the circuit for two different things at different points of the clock cycles, so parts count was reduced.
Re: Solving differential equations on a 6502 with Woz's floating point code
#10I find it funny that people enjoy the nostalgia of things like 6502... I loved my Atari 800XL, but wistfully dreamed that computers might one day be able to handle 320x240 with 256 colours.... boy... that would be good! Meanwhile I was hand assembling 6502 into data sections in basic so I could try and draw a circle... who knew drawing circles was so ridculously difficult and slow? Having said that, I do like this st…
Were you using a CORDIC algorithm? Bit shifts and adds, no multiplies required.
In gist form https://gist.github.com/djmips/29a8fa9099bf92b31a7259da65915...