Ignore:
Timestamp:
Sep 8, 2007, 8:43:18 PM (17 years ago)
Author:
dai_9181
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/abdev/BasicCompiler64/CodeGenerator.cpp

    r308 r317  
    17161716    pNativeCode->PutUserProcSchedule( pUserProc, false );
    17171717}
     1718void CodeGenerator::op_mov_RV_vtbl( int reg, const CClass *pClass )
     1719{
     1720    // mov reg,vtblAddress
     1721
     1722    //オペコード、レジスタ
     1723    pNativeCode->Put( (char)(0xB8|REGISTER_OPERAND(reg)) );
     1724
     1725    //DISP32
     1726    pNativeCode->PutVtblSchedule( pClass );
     1727}
Note: See TracChangeset for help on using the changeset viewer.