-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcop.cpp
43 lines (41 loc) · 1.38 KB
/
cop.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
//==============================================================================
// MIPS(R) Architecture For Programmers Volume II-A: The MIPS64(R) Instruction Set Reference Manual
//
// Document Number: MD00087
// Revision 6.06
// December 15, 2016
//
// Copyright (C) Wave Computing, Inc. All rights reserved.
//==============================================================================
#include "cop.h"
//------------------------------------------------------------------------------
// Co-Processor
//------------------------------------------------------------------------------
COP::COP(CPU& cpu_) : cpu(cpu_)
{
}
//------------------------------------------------------------------------------
COP::~COP()
{
}
//------------------------------------------------------------------------------
void COP::Execute(unsigned int encode)
{
}
//------------------------------------------------------------------------------
void COP::LDC(unsigned int encode)
{
}
//------------------------------------------------------------------------------
void COP::LWC(unsigned int encode)
{
}
//------------------------------------------------------------------------------
void COP::SDC(unsigned int encode)
{
}
//------------------------------------------------------------------------------
void COP::SWC(unsigned int encode)
{
}
//------------------------------------------------------------------------------