Changeset 250 in dev for trunk/abdev/BasicCompiler32/x86CodeGenerator.cpp
- Timestamp:
 - Jul 29, 2007, 9:30:14 PM (18 years ago)
 - File:
 - 
      
- 1 edited
 
- 
          
  trunk/abdev/BasicCompiler32/x86CodeGenerator.cpp (modified) (1 diff)
 
 
Legend:
- Unmodified
 - Added
 - Removed
 
- 
      
trunk/abdev/BasicCompiler32/x86CodeGenerator.cpp
r244 r250 1180 1180 } 1181 1181 void CodeGenerator::op_call(const UserProc *pUserProc){ 1182 pUserProc->Using();1183 1184 1182 pNativeCode->Put( (char)0xE8 ); 1185 1183 pNativeCode->PutUserProcSchedule( pUserProc, true ); 1186 1184 } 1185 void CodeGenerator::op_call( const DllProc *pDllProc ) 1186 { 1187 pNativeCode->Put( (char)0xFF ); 1188 pNativeCode->Put( (char)0x15 ); 1189 pNativeCode->PutDllProcSchedule( pDllProc ); 1190 } 1187 1191 void CodeGenerator::op_ret(){ 1188 1192 pNativeCode->Put( (char)0xC3 );  
  Note:
 See   TracChangeset
 for help on using the changeset viewer.
  