CHIP-8 icon indicating copy to clipboard operation
CHIP-8 copied to clipboard

Assembler and Emulator in Go

Results 4 CHIP-8 issues
Sort by recently updated
recently updated
newest added

fuwangqin@fuwangqin-pc:~/go/src/CHIP-8$ go build -ldflags "-H windowsgui" # CHIP-8 ./main.go:248: undefined: sdl.LoadBMP_RW ./main.go:338: cannot convert ev.File (type string) to type *C.char ./main.go:339: undefined: sdl.KeyDownEvent ./main.go:340: ev.Keysym undefined (type sdl.Event is interface...

Your readme lists `0x00BN` as an SCHIP instruction which scrolls the screen up by N pixels. To the best of my knowledge SCHIP does not provide this instruction. It's a...

Hi, first of all I like that this is one of the few implementations that also has an assembler, and the UI is clean and nice! I just found that...