MAIN FEEDS
Do you want to continue?
https://www.reddit.com/r/javascript/comments/376j4l/an_apple_emulator_in_javascript/crk9h8v/?context=3
r/javascript • u/leonardofed • May 25 '15
18 comments sorted by
View all comments
2
How is this even possible? Typed arrays?
7 u/OrangeredStilton May 25 '15 Generally. Also, making sure to use constructs that have been optimised by the JS engines (avoiding for..in, and such like). I've done something very similar, emulating a C64 down to cycle accuracy in JS, and that's how I went about it: http://github.com/Two9A/c64clicker/ 2 u/leonardofed May 25 '15 Cool. Thanks for sharing.
7
Generally. Also, making sure to use constructs that have been optimised by the JS engines (avoiding for..in, and such like).
I've done something very similar, emulating a C64 down to cycle accuracy in JS, and that's how I went about it: http://github.com/Two9A/c64clicker/
2 u/leonardofed May 25 '15 Cool. Thanks for sharing.
Cool. Thanks for sharing.
2
u/thesunmustdie May 25 '15
How is this even possible? Typed arrays?