head	1.1;
branch	1.1.1;
access;
symbols
	ver0_1:1.1.1.1
	release_0_1:1.1.1;
locks; strict;
comment	@// @;


1.1
date	2002.09.05.11.31.21;	author zhong;	state Exp;
branches
	1.1.1.1;
next	;

1.1.1.1
date	2002.09.05.11.31.21;	author zhong;	state Exp;
branches;
next	;


desc
@@


1.1
log
@Initial revision
@
text
@// scCDP.cpp: implementation of the scCDP class.
//
//////////////////////////////////////////////////////////////////////

#include "scCDP.h"

//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////

scCDP::scCDP(uint32_t)
{
 cout<<"CDP uncomplete"<<endl;
}

scCDP::~scCDP()
{

}
const char* scCDP::kind_string="CDP";

const char* scCDP::kind()
{
  return kind_string;
}

COND scCDP::cond()
{
 return COND(ir.cond);
}

bool scCDP::is_mult()
{
 return false;
}

bool scCDP::is_shift()
{
 return false;
}

bool scCDP::load()
{
 return false;
}

bool scCDP::pre()
{
 return false;
}

uint32_t scCDP::dist()
{
 return 0;
}

REGS scCDP::Rd()
{
 return REGS(0);
}

REGS scCDP::Rn()
{
 return REGS(0);
}

bool scCDP::is_ls()
{
 return false;
}

bool scCDP::is_rs()
{
 return true;
}

bool scCDP::is_branch()
{
 return false;
}

bool scCDP::set()
{
 return false;
}

bool scCDP::wb()
{
 return false;
}

OPCODE scCDP::op()
{
 return OPCODE(0);
}

uint32_t scCDP::A()
{
 return 0;
}

uint32_t scCDP::B()
{
 return 0;
}

SHIFT scCDP::shift_type()
{
 return SHIFT(0);
}

bool scCDP::is_imm()
{
 return true;
}
@


1.1.1.1
log
@v0_1
@
text
@@
