bsnes/higan/md
Tim Allen be3f6ac0d5 Update to v100r09 release.
byuu says:

Another six hours in ...

I have all of the opcodes, memory access functions, disassembler mnemonics
and table building converted over to the new template<uint Size> format.

Certainly, it would be quite easy for this nightmare chip to throw me
another curveball, but so far I can handle:

- MOVE (EA to, EA from) case
  - read(from) has to update register index for +/-(aN) mode
- MOVEM (EA from) case
  - when using +/-(aN), RA can't actually be updated until the transfer
    is completed
- LEA (EA from) case
  - doesn't actually perform the final read; just returns the address
    to be read from
- ANDI (EA from-and-to) case
  - same EA has to be read from and written to
  - for -(aN), the read has to come from aN-2, but can't update aN yet;
    so that the write also goes to aN-2
- no opcode can ever fetch the extension words more than once
- manually control the order of extension word fetching order for proper
  opcode decoding

To do all of that without a whole lot of duplicated code (or really
bloating out every single instruction with red tape), I had to bring
back the "bool valid / uint32 address" variables inside the EA struct =(

If weird exceptions creep in like timing constraints only on certain
opcodes, I can use template flags to the EA read/write functions to
handle that.
2016-07-19 19:12:05 +10:00
..
apu Update to v100r03 release. 2016-07-10 15:28:26 +10:00
cartridge Update to v100r07 release. 2016-07-17 13:24:28 +10:00
cpu Update to v100r09 release. 2016-07-19 19:12:05 +10:00
interface Update to v100r04 release. 2016-07-12 20:19:31 +10:00
psg Update to v100r03 release. 2016-07-10 15:28:26 +10:00
system Update to v100r04 release. 2016-07-12 20:19:31 +10:00
vdp Update to v100r03 release. 2016-07-10 15:28:26 +10:00
ym2612 Update to v100r03 release. 2016-07-10 15:28:26 +10:00
GNUmakefile Update to v100r03 release. 2016-07-10 15:28:26 +10:00
md.hpp Update to v100r03 release. 2016-07-10 15:28:26 +10:00