Manager.cpp

東芝なら
if (CardType == kType_C) {
 const BYTE Toshiba[] = { 0xC0, 0xFA, 0x00, 0x00, 0x07, 0x38, 0x36, 0x37, 0x34, 0x34, 0x32, 0x32 };
 const BYTE PinClear[] = { 0x00, 0x20, 0x00, 0x91 };
 const BYTE PinSet[] = { 0x00, 0x20, 0x00, 0x91, 0x04, 0x35, 0x31, 0x32, 0x39 };
アンロックして、書き込みもダンプもできる

M002ならアンロックとかダンプとかないから

if (Type == kType_C || Type == kType_INVALID)
 return false;
(..中略)
 BCAS::EMM EMM;
 EMM.CreateHeader();
 EMM.SetCardID(CardInfo);
 EMM.SetBroadcasterGroupID(BroadcasterGroupID);
...
でEMMを作る