From 787d9dd799784de8b59f77391a08ef29a0ac6293 Mon Sep 17 00:00:00 2001 From: "Adrian.Conlon" Date: Tue, 8 Aug 2017 13:38:27 +0100 Subject: [PATCH] Missed an easy "assume" entry Signed-off-by: Adrian.Conlon --- Z80/src/Z80.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Z80/src/Z80.cpp b/Z80/src/Z80.cpp index c3f4cfa..829bef6 100644 --- a/Z80/src/Z80.cpp +++ b/Z80/src/Z80.cpp @@ -821,6 +821,8 @@ void EightBit::Z80::executeCB(int x, int y, int z) { case 7: operand = srl(f, operand); break; + default: + __assume(0); } adjustSZP(f, operand); if (m_displaced) {