2016-07-17 12:42:03 -04:00
|
|
|
#pragma once
|
|
|
|
#include "stdafx.h"
|
|
|
|
#include "Txc22211A.h"
|
|
|
|
|
|
|
|
class Txc22211C : public Txc22211A
|
|
|
|
{
|
|
|
|
protected:
|
2016-12-17 23:14:47 -05:00
|
|
|
virtual uint8_t ReadRegister(uint16_t addr) override
|
2016-07-17 12:42:03 -04:00
|
|
|
{
|
|
|
|
return (_regs[1] ^ _regs[2]) | 0x41;
|
|
|
|
}
|
|
|
|
};
|