bsnes/higan
Tim Allen 92fe5b0813 Update to v100r08 release.
byuu says:

Six and a half hours this time ... one new opcode, and all old opcodes
now in a deprecated format. Hooray, progress!

For building the table, I've decided to move from:

    for(uint opcode : range(65536)) {
      if(match(...)) bind(opNAME, ...);
    }

To instead having separate for loops for each supported opcode. This
lets me specialize parts I want with templates.

And to this aim, I'm moving to replace all of the
(read,write)(size, ...) functions with (read,write)<Size>(...) functions.

This will amount to the ~70ish instructions being triplicated ot ~210ish
instructions; but I think this is really important.

When I was getting into flag calculations, a ton of conditionals
were needed to mask sizes to byte/word/long. There was also lots of
conditionals in all the memory access handlers.

The template code is ugly, but we eliminate a huge amount of branch
conditions this way.
2016-07-18 08:11:29 +10:00
..
audio Update to v100 release. 2016-07-08 22:04:59 +10:00
data Update to v097r06 release. 2016-01-31 18:59:44 +11:00
emulator Update to v100r08 release. 2016-07-18 08:11:29 +10:00
fc Update to v100r03 release. 2016-07-10 15:28:26 +10:00
gb Update to v100r03 release. 2016-07-10 15:28:26 +10:00
gba Update to v100r03 release. 2016-07-10 15:28:26 +10:00
md Update to v100r07 release. 2016-07-17 13:24:28 +10:00
obj Update to v096r01 release. 2015-12-30 17:54:59 +11:00
out Update to v096r01 release. 2015-12-30 17:54:59 +11:00
processor Update to v100r08 release. 2016-07-18 08:11:29 +10:00
resource Update to v098r12 release. 2016-05-26 21:20:15 +10:00
sfc Update to v100r07 release. 2016-07-17 13:24:28 +10:00
systems Update to v100r02 release. 2016-07-09 14:21:37 +10:00
target-tomoko Update to v100r02 release. 2016-07-09 14:21:37 +10:00
video Update to v098r12 release. 2016-05-26 21:20:15 +10:00
ws Update to v100r03 release. 2016-07-10 15:28:26 +10:00
GNUmakefile Update to v099r08 release. 2016-06-24 22:16:53 +10:00