diff --git a/OSBindings/Mac/Clock Signal.xcodeproj/xcshareddata/xcschemes/Clock Signal.xcscheme b/OSBindings/Mac/Clock Signal.xcodeproj/xcshareddata/xcschemes/Clock Signal.xcscheme index fc79e9f59..b42447721 100644 --- a/OSBindings/Mac/Clock Signal.xcodeproj/xcshareddata/xcschemes/Clock Signal.xcscheme +++ b/OSBindings/Mac/Clock Signal.xcodeproj/xcshareddata/xcschemes/Clock Signal.xcscheme @@ -27,7 +27,8 @@ selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB" selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB" shouldUseLaunchSchemeArgsEnv = "YES" - codeCoverageEnabled = "YES"> + codeCoverageEnabled = "YES" + enableAddressSanitizer = "YES"> diff --git a/Processors/Z80/Z80.hpp b/Processors/Z80/Z80.hpp index 857e12f94..6678510bb 100644 --- a/Processors/Z80/Z80.hpp +++ b/Processors/Z80/Z80.hpp @@ -186,8 +186,32 @@ template class Processor: public MicroOpScheduler { } } + void assemble_ed_page(MicroOp **target) { +#define NOP_ROW() XX, XX, XX, XX, XX, XX, XX, XX, XX, XX, XX, XX, XX, XX, XX, XX + static InstructionTable ed_program_table = { + NOP_ROW(), /* 0x00 */ + NOP_ROW(), /* 0x10 */ + NOP_ROW(), /* 0x20 */ + NOP_ROW(), /* 0x30 */ + NOP_ROW(), /* 0x40 */ + NOP_ROW(), /* 0x50 */ + NOP_ROW(), /* 0x60 */ + NOP_ROW(), /* 0x70 */ + NOP_ROW(), /* 0x80 */ + NOP_ROW(), /* 0x90 */ + NOP_ROW(), /* 0xa0 */ + NOP_ROW(), /* 0xb0 */ + NOP_ROW(), /* 0xc0 */ + NOP_ROW(), /* 0xd0 */ + NOP_ROW(), /* 0xe0 */ + NOP_ROW(), /* 0xf0 */ + }; + assemble_page(target, ed_program_table); +#undef NOP_ROW + } + void assemble_base_page(MicroOp **target) { - InstructionTable base_program_table = { + static InstructionTable base_program_table = { { {MicroOp::MoveToNextProgram} }, /* 0x00 NOP */ Program(FETCH16(bc_, pc_)), /* 0x01 LD BC, nn */ XX, /* 0x02 LD (BC), A */ @@ -346,6 +370,7 @@ template class Processor: public MicroOpScheduler { public: Processor() { assemble_base_page(base_page_); + assemble_ed_page(ed_page_); } /*!