From 7bfe5de9c72013cd6a72f249cac013cf8912f1c7 Mon Sep 17 00:00:00 2001 From: Kyle Swanson Date: Wed, 28 Mar 2018 21:37:34 -0700 Subject: [PATCH 1/2] chmod -x --- Core/apu.c | 0 Core/display.c | 0 Core/gb.c | 0 Core/symbol_hash.c | 0 4 files changed, 0 insertions(+), 0 deletions(-) mode change 100755 => 100644 Core/apu.c mode change 100755 => 100644 Core/display.c mode change 100755 => 100644 Core/gb.c mode change 100755 => 100644 Core/symbol_hash.c diff --git a/Core/apu.c b/Core/apu.c old mode 100755 new mode 100644 diff --git a/Core/display.c b/Core/display.c old mode 100755 new mode 100644 diff --git a/Core/gb.c b/Core/gb.c old mode 100755 new mode 100644 diff --git a/Core/symbol_hash.c b/Core/symbol_hash.c old mode 100755 new mode 100644 From 7ffe132e795003a68eda934eec50c24ecd01337e Mon Sep 17 00:00:00 2001 From: Kyle Swanson Date: Wed, 28 Mar 2018 21:38:48 -0700 Subject: [PATCH 2/2] fix typo --- Core/z80_cpu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Core/z80_cpu.c b/Core/z80_cpu.c index 2b319ab..fb85c7f 100644 --- a/Core/z80_cpu.c +++ b/Core/z80_cpu.c @@ -6,7 +6,7 @@ typedef void GB_opcode_t(GB_gameboy_t *gb, uint8_t opcode); /* - About memroy timings: + About memory timings: Each M-cycle consists of 4 T-cycles. Every time the CPU accesses the memory it happens on the 1st T-cycle of an M-cycle. During that cycle, other things may happen, such the PPU drawing to the screen. Since we can't really run