From 0277679a170316fa26a7332dd1fe0a33f60c62ea Mon Sep 17 00:00:00 2001 From: Ulf Wohlers Date: Mon, 16 Sep 2002 16:04:26 +0000 Subject: [PATCH] added 'rep nop' Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@285 --- src/cpu/core_16/main.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/cpu/core_16/main.h b/src/cpu/core_16/main.h index 9d72cf2e..e103276f 100644 --- a/src/cpu/core_16/main.h +++ b/src/cpu/core_16/main.h @@ -1205,6 +1205,8 @@ restart: } CMPW(reg_ax,LoadMw(to+(reg_di-direct*2)),LoadRw,0); break; + case 0x90: /* NOP - yes it is really used this way... eternam */ + break; default: E_Exit("Illegal REP prefix %2X",repcode); }