Example #1
0
char* unparser_i(uint32_t binary){
 int opcode = binary>>26;
 char* optype = getOptype(opcode);
 int reg1Opcode = binary >>21;
 int reg2Opcode = binary >> 16;
 char reg1 = makeRegister(reg1Opcode);
 char reg2 = makeRegister(reg2Opcode);

}
Example #2
0
void CLogInPage::makePageLeftSide( QHBoxLayout* pLayout )
{
    QVBoxLayout* pLeftSideLayout = new QVBoxLayout;
	pLayout->addItem( pLeftSideLayout );

	makeLogIn( pLeftSideLayout );
	makeRegister( pLeftSideLayout );
}