Ignore:
Timestamp:
Jul 29, 2007, 9:30:14 PM (17 years ago)
Author:
dai_9181
Message:

Selectステートメントのスケジュール機構をリファクタリング

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/abdev/BasicCompiler32/x86CodeGenerator.cpp

    r244 r250  
    11801180}
    11811181void CodeGenerator::op_call(const UserProc *pUserProc){
    1182     pUserProc->Using();
    1183 
    11841182    pNativeCode->Put( (char)0xE8 );
    11851183    pNativeCode->PutUserProcSchedule( pUserProc, true );
    11861184}
     1185void CodeGenerator::op_call( const DllProc *pDllProc )
     1186{
     1187    pNativeCode->Put( (char)0xFF );
     1188    pNativeCode->Put( (char)0x15 );
     1189    pNativeCode->PutDllProcSchedule( pDllProc );
     1190}
    11871191void CodeGenerator::op_ret(){
    11881192    pNativeCode->Put( (char)0xC3 );
Note: See TracChangeset for help on using the changeset viewer.