So, there are two ways I can do the disassembly . . .
commit211e0f972b480a102d8b62bff2ec6dc7da4877ab
authorstrange <kawk256@gmail.com>
Wed, 30 Dec 2009 20:19:59 +0000 (30 12:19 -0800)
committerstrange <kawk256@gmail.com>
Wed, 30 Dec 2009 20:19:59 +0000 (30 12:19 -0800)
treeb79d7409a4ac03ab22350e4bbd94e6f5894f8e87
parent93e66c0c7bbc5427733c2e47154ce251a0e1e676
So, there are two ways I can do the disassembly . . .

I can have a gigantic set of if() statements that are hardcoded, e.g. opcode
0x00 is "MOV <8-bit register>, <constant>" . . .

Or I can put it into a data file and parse it that way, e.g. softcode it. I
can take advantage of the ability to pack on files into a single ELF file, so
that no external data files are actually required . . . but that would be
annoying, as previously mentioned.

Oh well, I can always change it later.
src/monitor/asm/Opcode.cpp