NewbiZ / gbemu

Simple GameBoy emulator

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

JSON generation bug

mwillsey opened this issue · comments

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

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!

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