On Sale: GamesAssetsToolsTabletopComics
Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

Apple I !!! Weren’t these all kits sold by woz or something? Do you have one? I think I’d like to build a clone board at some point. I have an AppleIIgs, do you know if it happens to be backwards compatible and able to run your game? If so I’ll definitely type it in the monitor :)

I didn't even install a real emulator for this. It's all Apple1js, reading the original manual on Archive.org, and scrolling up and down 6502.org's opcode list to do ASM by hand.

Someone on reddit built a very clean replica, and posted a mediocre "digital rain" effect from The Matrix. I started a quick little effort to improve it and that got wildly out of hand. After a week, the resulting discussion of speed limitations concluded that the Apple I can print exactly one letter per frame. It is physically incapable of more. There is only one control character: the newline / carriage-return. Even a simple game at interactive speeds would be impossible. Right? Well. You can probably guess how my brain responds to the word "impossible."

I don't know how directly compatible the Apple II's ROM is. But where "20 EF FF" appears, the game expects to print the contents of the A register and then wait one frame. So insert... it feels wrong to call anything on 1970s hardware a polyfill. But point those JSRs elsewhere as-needed. 

If it just prints characters as fast the Apple II is able, don't blink.