12 lines
No EOL
197 B
C++
12 lines
No EOL
197 B
C++
#pragma once
|
|
#include "stdafx.h"
|
|
#include "Txc22211A.h"
|
|
|
|
class Txc22211C : public Txc22211A
|
|
{
|
|
protected:
|
|
virtual uint8_t ReadRegister(uint16_t addr)
|
|
{
|
|
return (_regs[1] ^ _regs[2]) | 0x41;
|
|
}
|
|
}; |