Pica: Add command processor.

This commit is contained in:
Tony Wasserka 2014-07-26 14:42:46 +02:00
parent 98ad16a45b
commit 76a586de49
9 changed files with 113 additions and 9 deletions

View file

@ -161,6 +161,8 @@ ASSERT_REG_POSITION(vertex_descriptor, 0x200);
// The total number of registers is chosen arbitrarily, but let's make sure it's not some odd value anyway.
static_assert(sizeof(Regs) == 0x300 * sizeof(u32), "Invalid total size of register set");
extern Regs registers; // TODO: Not sure if we want to have one global instance for this
struct float24 {
static float24 FromFloat32(float val) {