I've started working on a GameBoy emulator for fun and would like some opinions on several performance related questions:
Opcodes:
Should I directly handle all opcodes in one giant switch statement? The compiler (VC++ in my case) should convert this into a jump table improving speed. Or, would...