Update to v101r16 release.

byuu says:

Changelog:

  - Z80: implemented 113 new instructions (all the easy
    LD/ADC/ADD/AND/OR/SBC/SUB/XOR ones)
  - Z80: used alternative to castable<To, With> type (manual cast inside
    instruction() register macros)
  - Z80: debugger: used register macros to reduce typing and increase
    readability
  - Z80: debugger: smarter way of handling multiple DD/FD prefixes
    (using gotos, yay!)
  - ruby: fixed crash with Windows input driver on exit (from SuperMikeMan)

I have no idea how the P/V flag is supposed to work on AND/OR/XOR, so
that's probably wrong for now. HALT is also mostly a dummy function for
now. But I typically implement those inside instruction(), so it
probably won't need to be changed? We'll see.
This commit is contained in:
Tim Allen
2016-09-06 10:09:33 +10:00
parent 4c3f58150c
commit 2fbbccf985
9 changed files with 542 additions and 118 deletions

View File

@@ -170,7 +170,8 @@ struct InputKeyboardRawInput {
return true;
}
void term() {
auto term() -> void {
rawinput.updateKeyboard.reset();
}
};