NewbiZ / gbemu

Simple GameBoy emulator
Do What The F*ck You Want To Public License
8 stars 1 forks source link

JSON generation bug #1

Open mwillsey opened 10 years ago

mwillsey commented 10 years ago

I'm not sure if you're still working on this. But I'm working on my own gb emu and I liked your json generation of opcodes. However, the way you count msb and lsb does not properly handle invalid opcodes (you don't increment them). I did something similar in mine, so feel free to check it out.

https://github.com/mwillsey/gb.rs

NewbiZ commented 10 years ago

Hey! Yeah I've paused this project for the moment. Will get back to it when some other projects will be done. Thanks a lot, will check this out!

NewbiZ commented 9 years ago

Hey,

I've started over the project to play with Rust a bit... and I've just noticed that you were using Rust too, fun stuff! Mine is at https://github.com/NewbiZ/rgb

Anyway, just wanted to notify you that I scrapped an other website (http://clrhome.org/table/) to retrieve a clean documentation for each opcode. Here are the easily processable files containing the docs:

For example, here is a resulting generated instruction set stub in Rust (just playing with it):

Neat documentation :)

Cheers