mirror of https://github.com/PCSX2/pcsx2.git
42 lines
1.5 KiB
C++
42 lines
1.5 KiB
C++
/* PCSX2 - PS2 Emulator for PCs
|
|
* Copyright (C) 2002-2010 PCSX2 Dev Team
|
|
*
|
|
* PCSX2 is free software: you can redistribute it and/or modify it under the terms
|
|
* of the GNU Lesser General Public License as published by the Free Software Found-
|
|
* ation, either version 3 of the License, or (at your option) any later version.
|
|
*
|
|
* PCSX2 is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
|
|
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
* PURPOSE. See the GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License along with PCSX2.
|
|
* If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
|
|
#include "PrecompiledHeader.h"
|
|
|
|
#include "Common.h"
|
|
#include "deci2.h"
|
|
|
|
struct DECI2_TTYP_HEADER{
|
|
DECI2_HEADER h; //+00
|
|
u32 flushreq; //+08
|
|
//u8 data[0]; //+0C // Not used, so commented out (cottonvibes)
|
|
}; //=0C
|
|
|
|
void sendTTYP(u16 protocol, u8 source, char *data){
|
|
static char tmp[2048];
|
|
((DECI2_TTYP_HEADER*)tmp)->h.length =sizeof(DECI2_TTYP_HEADER)+strlen(data);
|
|
((DECI2_TTYP_HEADER*)tmp)->h._pad =0;
|
|
((DECI2_TTYP_HEADER*)tmp)->h.protocol =protocol +(source=='E' ? PROTO_ETTYP : PROTO_ITTYP);
|
|
((DECI2_TTYP_HEADER*)tmp)->h.source =source;
|
|
((DECI2_TTYP_HEADER*)tmp)->h.destination='H';
|
|
((DECI2_TTYP_HEADER*)tmp)->flushreq =0;
|
|
if (((DECI2_TTYP_HEADER*)tmp)->h.length>2048)
|
|
Msgbox::Alert(L"TTYP: Buffer overflow");
|
|
else
|
|
memcpy(&tmp[sizeof(DECI2_TTYP_HEADER)], data, strlen(data));
|
|
//writeData(tmp);
|
|
}
|