mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2024-12-23 17:31:33 +00:00
22 lines
474 B
C#
22 lines
474 B
C#
|
namespace EightBit
|
|||
|
{
|
|||
|
class IntelOpCodeDecoded
|
|||
|
{
|
|||
|
public int x;
|
|||
|
public int y;
|
|||
|
public int z;
|
|||
|
public int p;
|
|||
|
public int q;
|
|||
|
|
|||
|
public IntelOpCodeDecoded() { }
|
|||
|
|
|||
|
public IntelOpCodeDecoded(byte opcode) {
|
|||
|
x = (opcode & 0b11000000) >> 6; // 0 - 3
|
|||
|
y = (opcode & 0b00111000) >> 3; // 0 - 7
|
|||
|
z = (opcode & 0b00000111); // 0 - 7
|
|||
|
p = (y & 0b110) >> 1; // 0 - 3
|
|||
|
q = (y & 1); // 0 - 1
|
|||
|
}
|
|||
|
}
|
|||
|
}
|