2001-10-03 17:10:38 +04:00
|
|
|
/////////////////////////////////////////////////////////////////////////
|
2006-01-22 21:18:19 +03:00
|
|
|
// $Id: shift16.cc,v 1.30 2006-01-22 18:18:19 sshwarts Exp $
|
2001-10-03 17:10:38 +04:00
|
|
|
/////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
2001-04-10 06:20:02 +04:00
|
|
|
// Copyright (C) 2001 MandrakeSoft S.A.
|
2001-04-10 05:04:59 +04:00
|
|
|
//
|
|
|
|
// MandrakeSoft S.A.
|
|
|
|
// 43, rue d'Aboukir
|
|
|
|
// 75002 Paris - France
|
|
|
|
// http://www.linux-mandrake.com/
|
|
|
|
// http://www.mandrakesoft.com/
|
|
|
|
//
|
|
|
|
// This library is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU Lesser General Public
|
|
|
|
// License as published by the Free Software Foundation; either
|
|
|
|
// version 2 of the License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This library is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
// Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Lesser General Public
|
|
|
|
// License along with this library; if not, write to the Free Software
|
|
|
|
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
|
|
|
|
|
2001-05-24 22:46:34 +04:00
|
|
|
#define NEED_CPU_REG_SHORTCUTS 1
|
2001-04-10 05:04:59 +04:00
|
|
|
#include "bochs.h"
|
merge in BRANCH-io-cleanup.
To see the commit logs for this use either cvsweb or
cvs update -r BRANCH-io-cleanup and then 'cvs log' the various files.
In general this provides a generic interface for logging.
logfunctions:: is a class that is inherited by some classes, and also
. allocated as a standalone global called 'genlog'. All logging uses
. one of the ::info(), ::error(), ::ldebug(), ::panic() methods of this
. class through 'BX_INFO(), BX_ERROR(), BX_DEBUG(), BX_PANIC()' macros
. respectively.
.
. An example usage:
. BX_INFO(("Hello, World!\n"));
iofunctions:: is a class that is allocated once by default, and assigned
as the iofunction of each logfunctions instance. It is this class that
maintains the file descriptor and other output related code, at this
point using vfprintf(). At some future point, someone may choose to
write a gui 'console' for bochs to which messages would be redirected
simply by assigning a different iofunction class to the various logfunctions
objects.
More cleanup is coming, but this works for now. If you want to see alot
of debugging output, in main.cc, change onoff[LOGLEV_DEBUG]=0 to =1.
Comments, bugs, flames, to me: todd@fries.net
2001-05-15 18:49:57 +04:00
|
|
|
#define LOG_THIS BX_CPU_THIS_PTR
|
2001-04-10 05:04:59 +04:00
|
|
|
|
|
|
|
|
2004-12-25 01:44:13 +03:00
|
|
|
void BX_CPU_C::SHLD_EwGw(bxInstruction_c *i)
|
2001-04-10 05:04:59 +04:00
|
|
|
{
|
|
|
|
Bit16u op1_16, op2_16, result_16;
|
2005-02-17 00:27:21 +03:00
|
|
|
Bit32u temp_32, result_32;
|
2001-04-10 05:04:59 +04:00
|
|
|
unsigned count;
|
|
|
|
|
|
|
|
/* op1:op2 << count. result stored in op1 */
|
2002-09-18 12:00:43 +04:00
|
|
|
if (i->b1() == 0x1a4)
|
2002-09-18 02:50:53 +04:00
|
|
|
count = i->Ib();
|
2001-04-10 05:04:59 +04:00
|
|
|
else // 0x1a5
|
|
|
|
count = CL;
|
|
|
|
|
|
|
|
count &= 0x1f; // use only 5 LSB's
|
|
|
|
|
2004-12-25 01:44:13 +03:00
|
|
|
/* op1 is a register or memory reference */
|
|
|
|
if (i->modC0()) {
|
|
|
|
op1_16 = BX_READ_16BIT_REG(i->rm());
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* pointer, segment address pair */
|
|
|
|
read_RMW_virtual_word(i->seg(), RMAddr(i), &op1_16);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!count) return;
|
|
|
|
// count is 1..31
|
|
|
|
|
|
|
|
op2_16 = BX_READ_16BIT_REG(i->nnn());
|
|
|
|
|
2005-02-17 00:27:21 +03:00
|
|
|
temp_32 = ((Bit32u)(op1_16) << 16) | (op2_16); // double formed by op1:op2
|
|
|
|
result_32 = temp_32 << count;
|
2004-12-25 01:44:13 +03:00
|
|
|
// Hack to act like x86 SHLD when count > 16
|
|
|
|
if (count > 16) {
|
|
|
|
// when count > 16 actually shifting op1:op2:op2 << count,
|
|
|
|
// it is the same as shifting op2:op2 by count-16
|
2005-02-17 00:27:21 +03:00
|
|
|
result_32 |= (op1_16 << (count - 16));
|
2004-12-25 01:44:13 +03:00
|
|
|
}
|
|
|
|
|
2005-02-17 00:27:21 +03:00
|
|
|
result_16 = result_32 >> 16;
|
2004-12-25 01:44:13 +03:00
|
|
|
|
|
|
|
/* now write result back to destination */
|
|
|
|
if (i->modC0()) {
|
|
|
|
BX_WRITE_16BIT_REG(i->rm(), result_16);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
Write_RMW_virtual_word(result_16);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* set eflags:
|
|
|
|
* SHLD count affects the following flags: O,S,Z,A,P,C
|
|
|
|
*/
|
|
|
|
SET_FLAGS_OSZAPC_16(op1_16, count, result_16, BX_INSTR_SHL16);
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|
|
|
|
|
2004-12-25 01:44:13 +03:00
|
|
|
void BX_CPU_C::SHRD_EwGw(bxInstruction_c *i)
|
2001-04-10 05:04:59 +04:00
|
|
|
{
|
|
|
|
Bit16u op1_16, op2_16, result_16;
|
2005-02-17 00:27:21 +03:00
|
|
|
Bit32u temp_32, result_32;
|
2001-04-10 05:04:59 +04:00
|
|
|
unsigned count;
|
|
|
|
|
2002-09-18 12:00:43 +04:00
|
|
|
if (i->b1() == 0x1ac)
|
2002-09-18 02:50:53 +04:00
|
|
|
count = i->Ib();
|
2001-04-10 05:04:59 +04:00
|
|
|
else // 0x1ad
|
|
|
|
count = CL;
|
|
|
|
|
2004-12-25 01:44:13 +03:00
|
|
|
count &= 0x1f; /* use only 5 LSB's */
|
|
|
|
|
|
|
|
/* op1 is a register or memory reference */
|
|
|
|
if (i->modC0()) {
|
|
|
|
op1_16 = BX_READ_16BIT_REG(i->rm());
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* pointer, segment address pair */
|
|
|
|
read_RMW_virtual_word(i->seg(), RMAddr(i), &op1_16);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!count) return;
|
|
|
|
// count is 1..31
|
|
|
|
|
|
|
|
op2_16 = BX_READ_16BIT_REG(i->nnn());
|
|
|
|
|
|
|
|
// Hack to act like x86 SHLD when count > 16
|
2005-02-17 00:27:21 +03:00
|
|
|
temp_32 = (op2_16 << 16) | op1_16; // double formed by op2:op1
|
|
|
|
result_32 = temp_32 >> count;
|
2004-12-25 01:44:13 +03:00
|
|
|
if (count > 16) {
|
|
|
|
// when count > 16 actually shifting op2:op2:op1 >> count,
|
|
|
|
// it is the same as shifting op2:op2 by count-16
|
2005-02-17 00:27:21 +03:00
|
|
|
result_32 |= (op1_16 << (32 - count));
|
2004-12-25 01:44:13 +03:00
|
|
|
}
|
|
|
|
|
2005-02-17 00:27:21 +03:00
|
|
|
result_16 = result_32;
|
2004-12-25 01:44:13 +03:00
|
|
|
|
|
|
|
/* now write result back to destination */
|
|
|
|
if (i->modC0()) {
|
|
|
|
BX_WRITE_16BIT_REG(i->rm(), result_16);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
Write_RMW_virtual_word(result_16);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* set eflags:
|
2005-10-14 00:21:35 +04:00
|
|
|
* SHRD count affects the following flags: O,S,Z,A,P,C
|
2004-12-25 01:44:13 +03:00
|
|
|
*/
|
2005-10-14 00:21:35 +04:00
|
|
|
SET_FLAGS_OSZAPC_16(op1_16, count, result_16, BX_INSTR_SHRD16);
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|
|
|
|
|
2004-12-25 01:44:13 +03:00
|
|
|
void BX_CPU_C::ROL_Ew(bxInstruction_c *i)
|
2001-04-10 05:04:59 +04:00
|
|
|
{
|
2004-08-10 01:28:47 +04:00
|
|
|
Bit16u op1_16, result_16;
|
2001-04-10 05:04:59 +04:00
|
|
|
unsigned count;
|
|
|
|
|
2002-09-18 12:00:43 +04:00
|
|
|
if ( i->b1() == 0xc1 )
|
2002-09-18 02:50:53 +04:00
|
|
|
count = i->Ib();
|
2002-09-18 12:00:43 +04:00
|
|
|
else if ( i->b1() == 0xd1 )
|
2001-04-10 05:04:59 +04:00
|
|
|
count = 1;
|
|
|
|
else // 0xd3
|
|
|
|
count = CL;
|
|
|
|
|
2004-12-25 01:44:13 +03:00
|
|
|
/* op1 is a register or memory reference */
|
|
|
|
if (i->modC0()) {
|
|
|
|
op1_16 = BX_READ_16BIT_REG(i->rm());
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* pointer, segment address pair */
|
|
|
|
read_RMW_virtual_word(i->seg(), RMAddr(i), &op1_16);
|
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2005-02-17 00:27:21 +03:00
|
|
|
if ( (count & 0x0f) == 0 ) {
|
|
|
|
if ( count & 0x10 ) {
|
|
|
|
unsigned bit0 = op1_16 & 1;
|
|
|
|
set_CF(bit0);
|
2006-01-22 21:18:19 +03:00
|
|
|
set_OF(bit0 ^ (op1_16 >> 15));
|
2005-02-17 00:27:21 +03:00
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
count &= 0x0f; // only use bottom 4 bits
|
2004-08-28 00:13:32 +04:00
|
|
|
|
2004-12-25 01:44:13 +03:00
|
|
|
result_16 = (op1_16 << count) | (op1_16 >> (16 - count));
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2004-12-25 01:44:13 +03:00
|
|
|
/* now write result back to destination */
|
|
|
|
if (i->modC0()) {
|
|
|
|
BX_WRITE_16BIT_REG(i->rm(), result_16);
|
2005-10-13 23:28:10 +04:00
|
|
|
}
|
2004-12-25 01:44:13 +03:00
|
|
|
else {
|
|
|
|
Write_RMW_virtual_word(result_16);
|
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2004-12-25 01:44:13 +03:00
|
|
|
/* set eflags:
|
|
|
|
* ROL count affects the following flags: C, O
|
|
|
|
*/
|
|
|
|
bx_bool temp_CF = (result_16 & 0x01);
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2004-12-25 01:44:13 +03:00
|
|
|
set_CF(temp_CF);
|
|
|
|
set_OF(temp_CF ^ (result_16 >> 15));
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|
|
|
|
|
2004-12-25 01:44:13 +03:00
|
|
|
void BX_CPU_C::ROR_Ew(bxInstruction_c *i)
|
2001-04-10 05:04:59 +04:00
|
|
|
{
|
2004-08-28 00:13:32 +04:00
|
|
|
Bit16u op1_16, result_16;
|
2001-04-10 05:04:59 +04:00
|
|
|
unsigned count;
|
|
|
|
|
2002-09-18 12:00:43 +04:00
|
|
|
if ( i->b1() == 0xc1 )
|
2002-09-18 02:50:53 +04:00
|
|
|
count = i->Ib();
|
2002-09-18 12:00:43 +04:00
|
|
|
else if ( i->b1() == 0xd1 )
|
2001-04-10 05:04:59 +04:00
|
|
|
count = 1;
|
|
|
|
else // 0xd3
|
|
|
|
count = CL;
|
|
|
|
|
2004-12-25 01:44:13 +03:00
|
|
|
/* op1 is a register or memory reference */
|
|
|
|
if (i->modC0()) {
|
|
|
|
op1_16 = BX_READ_16BIT_REG(i->rm());
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* pointer, segment address pair */
|
|
|
|
read_RMW_virtual_word(i->seg(), RMAddr(i), &op1_16);
|
|
|
|
}
|
|
|
|
|
2005-02-17 00:27:21 +03:00
|
|
|
if ( (count & 0x0f) == 0 ) {
|
|
|
|
if ( count & 0x10 ) {
|
2006-01-22 21:17:27 +03:00
|
|
|
unsigned bit14 = (op1_16 >> 14) & 1;
|
|
|
|
unsigned bit15 = (op1_16 >> 15);
|
|
|
|
set_CF(bit15);
|
|
|
|
set_OF(bit15 ^ bit14);
|
2005-02-17 00:27:21 +03:00
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
count &= 0x0f; // use only 4 LSB's
|
2004-12-25 01:44:13 +03:00
|
|
|
|
|
|
|
result_16 = (op1_16 >> count) | (op1_16 << (16 - count));
|
|
|
|
|
|
|
|
/* now write result back to destination */
|
|
|
|
if (i->modC0()) {
|
|
|
|
BX_WRITE_16BIT_REG(i->rm(), result_16);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
Write_RMW_virtual_word(result_16);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* set eflags:
|
|
|
|
* ROR count affects the following flags: C, O
|
|
|
|
*/
|
|
|
|
bx_bool result_b15 = (result_16 & 0x8000) != 0;
|
2005-10-13 23:28:10 +04:00
|
|
|
bx_bool result_b14 = (result_16 & 0x4000) != 0;
|
2004-12-25 01:44:13 +03:00
|
|
|
|
|
|
|
set_CF(result_b15);
|
2005-10-13 23:28:10 +04:00
|
|
|
set_OF(result_b15 ^ result_b14);
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|
|
|
|
|
2004-12-25 01:44:13 +03:00
|
|
|
void BX_CPU_C::RCL_Ew(bxInstruction_c *i)
|
2001-04-10 05:04:59 +04:00
|
|
|
{
|
|
|
|
Bit16u op1_16, result_16;
|
|
|
|
unsigned count;
|
|
|
|
|
2002-09-18 12:00:43 +04:00
|
|
|
if ( i->b1() == 0xc1 )
|
2002-09-18 02:50:53 +04:00
|
|
|
count = i->Ib();
|
2002-09-18 12:00:43 +04:00
|
|
|
else if ( i->b1() == 0xd1 )
|
2001-04-10 05:04:59 +04:00
|
|
|
count = 1;
|
|
|
|
else // 0xd3
|
|
|
|
count = CL;
|
|
|
|
|
2005-02-17 00:27:21 +03:00
|
|
|
count = (count & 0x1f) % 17;
|
2004-12-25 01:44:13 +03:00
|
|
|
|
|
|
|
/* op1 is a register or memory reference */
|
|
|
|
if (i->modC0()) {
|
|
|
|
op1_16 = BX_READ_16BIT_REG(i->rm());
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* pointer, segment address pair */
|
|
|
|
read_RMW_virtual_word(i->seg(), RMAddr(i), &op1_16);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!count) return;
|
|
|
|
|
|
|
|
if (count==1) {
|
|
|
|
result_16 = (op1_16 << 1) | getB_CF();
|
|
|
|
}
|
|
|
|
else if (count==16) {
|
|
|
|
result_16 = (getB_CF() << 15) | (op1_16 >> 1);
|
|
|
|
}
|
|
|
|
else { // 2..15
|
|
|
|
result_16 = (op1_16 << count) | (getB_CF() << (count - 1)) |
|
|
|
|
(op1_16 >> (17 - count));
|
|
|
|
}
|
|
|
|
|
|
|
|
/* now write result back to destination */
|
|
|
|
if (i->modC0()) {
|
|
|
|
BX_WRITE_16BIT_REG(i->rm(), result_16);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
Write_RMW_virtual_word(result_16);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* set eflags:
|
|
|
|
* RCL count affects the following flags: C, O
|
|
|
|
*/
|
|
|
|
bx_bool temp_CF = (op1_16 >> (16 - count)) & 0x01;
|
|
|
|
|
|
|
|
set_CF(temp_CF);
|
|
|
|
set_OF(temp_CF ^ (result_16 >> 15));
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|
|
|
|
|
2004-12-25 01:44:13 +03:00
|
|
|
void BX_CPU_C::RCR_Ew(bxInstruction_c *i)
|
2001-04-10 05:04:59 +04:00
|
|
|
{
|
|
|
|
Bit16u op1_16, result_16;
|
|
|
|
unsigned count;
|
|
|
|
|
2002-09-18 12:00:43 +04:00
|
|
|
if ( i->b1() == 0xc1 )
|
2002-09-18 02:50:53 +04:00
|
|
|
count = i->Ib();
|
2002-09-18 12:00:43 +04:00
|
|
|
else if ( i->b1() == 0xd1 )
|
2001-04-10 05:04:59 +04:00
|
|
|
count = 1;
|
|
|
|
else // 0xd3
|
|
|
|
count = CL;
|
|
|
|
|
2005-02-17 00:27:21 +03:00
|
|
|
count = (count & 0x1f) % 17;
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2004-12-25 01:44:13 +03:00
|
|
|
/* op1 is a register or memory reference */
|
|
|
|
if (i->modC0()) {
|
|
|
|
op1_16 = BX_READ_16BIT_REG(i->rm());
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* pointer, segment address pair */
|
|
|
|
read_RMW_virtual_word(i->seg(), RMAddr(i), &op1_16);
|
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2004-08-28 00:13:32 +04:00
|
|
|
if (! count) return;
|
|
|
|
|
2004-12-25 01:44:13 +03:00
|
|
|
result_16 = (op1_16 >> count) |
|
2002-10-03 22:12:40 +04:00
|
|
|
(getB_CF() << (16 - count)) |
|
|
|
|
(op1_16 << (17 - count));
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2004-12-25 01:44:13 +03:00
|
|
|
/* now write result back to destination */
|
|
|
|
if (i->modC0()) {
|
|
|
|
BX_WRITE_16BIT_REG(i->rm(), result_16);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
Write_RMW_virtual_word(result_16);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* set eflags:
|
|
|
|
* RCR count affects the following flags: C, O
|
|
|
|
*/
|
|
|
|
|
|
|
|
set_CF((op1_16 >> (count - 1)) & 0x01);
|
2005-10-13 23:28:10 +04:00
|
|
|
set_OF((((result_16 << 1) ^ result_16) & 0x8000) > 0);
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|
|
|
|
|
2004-12-25 01:44:13 +03:00
|
|
|
void BX_CPU_C::SHL_Ew(bxInstruction_c *i)
|
2001-04-10 05:04:59 +04:00
|
|
|
{
|
|
|
|
Bit16u op1_16, result_16;
|
|
|
|
unsigned count;
|
|
|
|
|
2002-09-18 12:00:43 +04:00
|
|
|
if ( i->b1() == 0xc1 )
|
2002-09-18 02:50:53 +04:00
|
|
|
count = i->Ib();
|
2002-09-18 12:00:43 +04:00
|
|
|
else if ( i->b1() == 0xd1 )
|
2001-04-10 05:04:59 +04:00
|
|
|
count = 1;
|
|
|
|
else // 0xd3
|
|
|
|
count = CL;
|
|
|
|
|
2004-12-25 01:44:13 +03:00
|
|
|
count &= 0x1f; /* use only 5 LSB's */
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2004-12-25 01:44:13 +03:00
|
|
|
/* op1 is a register or memory reference */
|
|
|
|
if (i->modC0()) {
|
|
|
|
op1_16 = BX_READ_16BIT_REG(i->rm());
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* pointer, segment address pair */
|
|
|
|
read_RMW_virtual_word(i->seg(), RMAddr(i), &op1_16);
|
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2004-12-25 01:44:13 +03:00
|
|
|
if (!count) return;
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2004-12-25 01:44:13 +03:00
|
|
|
result_16 = (op1_16 << count);
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2004-12-25 01:44:13 +03:00
|
|
|
/* now write result back to destination */
|
|
|
|
if (i->modC0()) {
|
|
|
|
BX_WRITE_16BIT_REG(i->rm(), result_16);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
Write_RMW_virtual_word(result_16);
|
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2004-12-25 01:44:13 +03:00
|
|
|
SET_FLAGS_OSZAPC_16(op1_16, count, result_16, BX_INSTR_SHL16);
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|
|
|
|
|
2004-12-25 01:44:13 +03:00
|
|
|
void BX_CPU_C::SHR_Ew(bxInstruction_c *i)
|
2001-04-10 05:04:59 +04:00
|
|
|
{
|
|
|
|
Bit16u op1_16, result_16;
|
|
|
|
unsigned count;
|
|
|
|
|
2002-09-18 12:00:43 +04:00
|
|
|
if ( i->b1() == 0xc1 )
|
2002-09-18 02:50:53 +04:00
|
|
|
count = i->Ib();
|
2002-09-18 12:00:43 +04:00
|
|
|
else if ( i->b1() == 0xd1 )
|
2001-04-10 05:04:59 +04:00
|
|
|
count = 1;
|
|
|
|
else // 0xd3
|
|
|
|
count = CL;
|
|
|
|
|
2004-12-25 01:44:13 +03:00
|
|
|
count &= 0x1f; /* use only 5 LSB's */
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2004-12-25 01:44:13 +03:00
|
|
|
/* op1 is a register or memory reference */
|
|
|
|
if (i->modC0()) {
|
|
|
|
op1_16 = BX_READ_16BIT_REG(i->rm());
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* pointer, segment address pair */
|
|
|
|
read_RMW_virtual_word(i->seg(), RMAddr(i), &op1_16);
|
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2004-12-25 01:44:13 +03:00
|
|
|
if (!count) return;
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2004-02-15 20:57:45 +03:00
|
|
|
#if defined(BX_HostAsm_Shr16)
|
2004-12-25 01:44:13 +03:00
|
|
|
Bit32u flags32;
|
|
|
|
asmShr16(result_16, op1_16, count, flags32);
|
|
|
|
setEFlagsOSZAPC(flags32);
|
2002-10-03 22:12:40 +04:00
|
|
|
#else
|
2004-12-25 01:44:13 +03:00
|
|
|
result_16 = (op1_16 >> count);
|
|
|
|
SET_FLAGS_OSZAPC_16(op1_16, count, result_16, BX_INSTR_SHR16);
|
2002-10-03 22:12:40 +04:00
|
|
|
#endif
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2004-12-25 01:44:13 +03:00
|
|
|
/* now write result back to destination */
|
|
|
|
if (i->modC0()) {
|
|
|
|
BX_WRITE_16BIT_REG(i->rm(), result_16);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
Write_RMW_virtual_word(result_16);
|
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|
|
|
|
|
2004-12-25 01:44:13 +03:00
|
|
|
void BX_CPU_C::SAR_Ew(bxInstruction_c *i)
|
2001-04-10 05:04:59 +04:00
|
|
|
{
|
|
|
|
Bit16u op1_16, result_16;
|
|
|
|
unsigned count;
|
|
|
|
|
2002-09-18 12:00:43 +04:00
|
|
|
if ( i->b1() == 0xc1 )
|
2002-09-18 02:50:53 +04:00
|
|
|
count = i->Ib();
|
2002-09-18 12:00:43 +04:00
|
|
|
else if ( i->b1() == 0xd1 )
|
2001-04-10 05:04:59 +04:00
|
|
|
count = 1;
|
|
|
|
else // 0xd3
|
|
|
|
count = CL;
|
|
|
|
|
2004-12-25 01:44:13 +03:00
|
|
|
count &= 0x1f; /* use only 5 LSB's */
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2004-12-25 01:44:13 +03:00
|
|
|
/* op1 is a register or memory reference */
|
|
|
|
if (i->modC0()) {
|
|
|
|
op1_16 = BX_READ_16BIT_REG(i->rm());
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* pointer, segment address pair */
|
|
|
|
read_RMW_virtual_word(i->seg(), RMAddr(i), &op1_16);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!count) return;
|
|
|
|
|
|
|
|
if (count < 16) {
|
|
|
|
if (op1_16 & 0x8000) {
|
|
|
|
result_16 = (op1_16 >> count) | (0xffff << (16 - count));
|
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
else {
|
2004-12-25 01:44:13 +03:00
|
|
|
result_16 = (op1_16 >> count);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if (op1_16 & 0x8000) {
|
|
|
|
result_16 = 0xffff;
|
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
else {
|
2004-12-25 01:44:13 +03:00
|
|
|
result_16 = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* now write result back to destination */
|
|
|
|
if (i->modC0()) {
|
|
|
|
BX_WRITE_16BIT_REG(i->rm(), result_16);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
Write_RMW_virtual_word(result_16);
|
|
|
|
}
|
|
|
|
|
|
|
|
SET_FLAGS_OSZAPC_16(op1_16, count, result_16, BX_INSTR_SAR16);
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|