From dfb87ec9e3750357cbab277e173456d5bbe3c9ec Mon Sep 17 00:00:00 2001 From: Sjoerd van der Berg Date: Sun, 27 Oct 2002 21:31:43 +0000 Subject: [PATCH] Added 0xb2, LSS instruction. Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@453 --- src/cpu/core_16/prefix_of.h | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/cpu/core_16/prefix_of.h b/src/cpu/core_16/prefix_of.h index 3e3a4b4b..dc99459c 100644 --- a/src/cpu/core_16/prefix_of.h +++ b/src/cpu/core_16/prefix_of.h @@ -251,7 +251,12 @@ switch(Fetchb()) { } /* 0xb0 CMPXCHG Eb,Gb */ /* 0xb1 CMPXCHG Ew,Gw */ - /* 0xb2 LSS */ + case 0xb2: /* LSS */ + { + GetRMrw;GetEAa; + *rmrw=LoadMw(eaa);SegSet16(ss,LoadMw(eaa+2)); + break; + } case 0xb3: /* BTR Ew,Gw */ { GetRMrw;