diff --git a/src/BizHawk.Emulation.Cores/CPUs/Z80A/Tables_Direct.cs b/src/BizHawk.Emulation.Cores/CPUs/Z80A/Tables_Direct.cs index 2dd75931ee..97e01afecf 100644 --- a/src/BizHawk.Emulation.Cores/CPUs/Z80A/Tables_Direct.cs +++ b/src/BizHawk.Emulation.Cores/CPUs/Z80A/Tables_Direct.cs @@ -515,7 +515,7 @@ namespace BizHawk.Emulation.Cores.Components.Z80A WAIT, RD_INC, Z, PCl, PCh, TR, ALU, A, - WAIT, + IDLE, WAIT, OUT_INC, Z, ALU, A); @@ -530,7 +530,7 @@ namespace BizHawk.Emulation.Cores.Components.Z80A (IDLE, TR16, Z, W, C, B, IDLE, - IDLE, + WAIT, OUT_INC, Z, W, src); PopulateBUSRQ(0, BIO1, BIO2, BIO3, BIO4); @@ -546,7 +546,7 @@ namespace BizHawk.Emulation.Cores.Components.Z80A WAIT, RD_INC, Z, PCl, PCh, IDLE, - WAIT, + IDLE, WAIT, IN_A_N_INC, A, Z, W); @@ -560,7 +560,7 @@ namespace BizHawk.Emulation.Cores.Components.Z80A PopulateCURINSTR (IDLE, TR16, Z, W, C, B, - WAIT, + IDLE, WAIT, IN_INC, dest, Z, W); diff --git a/src/BizHawk.Emulation.Cores/CPUs/Z80A/Tables_Indirect.cs b/src/BizHawk.Emulation.Cores/CPUs/Z80A/Tables_Indirect.cs index 5f2ff7c4ea..1b18f004fc 100644 --- a/src/BizHawk.Emulation.Cores/CPUs/Z80A/Tables_Indirect.cs +++ b/src/BizHawk.Emulation.Cores/CPUs/Z80A/Tables_Indirect.cs @@ -461,7 +461,7 @@ (IDLE, IDLE, IDLE, - WAIT, + IDLE, WAIT, IN, ALU, C, B, IDLE, @@ -482,7 +482,7 @@ WAIT, RD, ALU, L, H, IDLE, - WAIT, + IDLE, WAIT, REP_OP_O, C, B, ALU, operation, 3, operation, repeat_instr); diff --git a/src/BizHawk.Emulation.Cores/Computers/AmstradCPC/readme.md b/src/BizHawk.Emulation.Cores/Computers/AmstradCPC/readme.md index a8bd8243cf..ddc6919771 100644 --- a/src/BizHawk.Emulation.Cores/Computers/AmstradCPC/readme.md +++ b/src/BizHawk.Emulation.Cores/Computers/AmstradCPC/readme.md @@ -52,31 +52,7 @@ Unknown #### Test 5: Instruction timing test -| Prefix | OPC | Inst. | Comments | -|:----:|:----:|:-----:|:------------:| -|NONE| D3:4 | OUT A | | -|NONE| DB:4 | IN A | | -|NONE| D3:5 | OUT A | | -|NONE| DB:5 | IN A | | -|ED| 41:3 | OUT (C), B | | -|ED| 49:3 | OUT (C), C | | -|ED| 51:3 | OUT (C), D | | -|ED| 59:3 | OUT (C), E | | -|ED| 61:3 | OUT (C), H | | -|ED| 69:3 | OUT (C), L | | -|ED| 71:3 | OUT (C), 0 | | -|ED| 79:3 | OUT (C), A | | -|ED| A2:6 | INI | | -|ED| A3:6 | OUTI | | -|ED| AA:6 | IND | | -|ED| B2:7/6| INIR | | -|ED| B3:7/6| OTIR | | -|ED| BA:7/6| INDR | | -|ED| BB:7/6| OTDR | | -|DD CB| D3:5| SET 2, (ix+d), e | | -|DD CB| DB:5| SET 3, (ix+d), e | | - -Everything else passes. Almost certainly the problems observed relate to IO timing. +All tests passing #### Test 6: Register 0 test Unknown