Changeset 129 in dev for BasicCompiler32
- Timestamp:
- Jun 2, 2007, 12:09:08 AM (17 years ago)
- Location:
- BasicCompiler32
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
BasicCompiler32/Compile_Calc.cpp
r128 r129 412 412 } 413 413 414 void OpcodeCalc( char *Command){414 void OpcodeCalc( const char *Command ){ 415 415 int i,i2,i3; 416 416 char variable[VN_SIZE]; -
BasicCompiler32/Compile_ProcOp.cpp
r108 r129 42 42 //GC用の変数を定義 43 43 InitGCVariables(); 44 45 //_System_StartupProgramの呼び出し 46 extern UserProc *pSub_System_StartupProgram; 47 op_call(pSub_System_StartupProgram); 44 48 45 49 //クラスに属する静的メンバを定義 -
BasicCompiler32/Compile_Statement.cpp
r128 r129 2 2 #include "Opcode.h" 3 3 4 void OpcodeOthers( char *Command){4 void OpcodeOthers( const char *Command ){ 5 5 int i,i2; 6 6 UserProc *pUserProc; -
BasicCompiler32/Opcode.h
r128 r129 98 98 void ChangeTypeToByte(int OldType); 99 99 void SetVariableFromEax(int VarType,int CalcType,RELATIVE_VAR *pRelativeVar); 100 void OpcodeCalc( char *Command);100 void OpcodeCalc( const char *Command ); 101 101 102 102 //NumOpe.cpp … … 170 170 171 171 //increment.cpp 172 void IncDec(int idCalc, c har *lpszLeft,char *lpszRight);172 void IncDec(int idCalc, const char *lpszLeft, const char *lpszRight); 173 173 174 174 //calc2.cpp … … 269 269 270 270 //Compile_Statement.cpp 271 void OpcodeOthers( char *Command);271 void OpcodeOthers( const char *Command ); 272 272 void OpcodeIf(char *Parameter); 273 273 void OpcodeGoto(char *Parameter); -
BasicCompiler32/increment.cpp
r75 r129 2 2 #include "Opcode.h" 3 3 4 void IncDec(int idCalc, c har *lpszLeft,char *lpszRight){4 void IncDec(int idCalc, const char *lpszLeft, const char *lpszRight){ 5 5 6 6 ///////////////////////////
Note:
See TracChangeset
for help on using the changeset viewer.