mirror of
https://github.com/vishapoberon/compiler.git
synced 2026-04-06 06:22:25 +00:00
Use SET64 representation in the compiler.
This commit is contained in:
parent
2e02f9204c
commit
7238be5257
38 changed files with 119 additions and 126 deletions
|
|
@ -26,7 +26,7 @@ import void OPM_DeleteNewSym (void);
|
|||
import void OPM_FPrint (int32 *fp, int64 val);
|
||||
import void OPM_FPrintLReal (int32 *fp, LONGREAL lr);
|
||||
import void OPM_FPrintReal (int32 *fp, REAL real);
|
||||
import void OPM_FPrintSet (int32 *fp, uint32 set);
|
||||
import void OPM_FPrintSet (int32 *fp, uint64 set);
|
||||
import void OPM_Get (CHAR *ch);
|
||||
import void OPM_Init (BOOLEAN *done, CHAR *mname, LONGINT mname__len);
|
||||
import void OPM_InitOptions (void);
|
||||
|
|
@ -49,12 +49,12 @@ import int32 OPM_SymRInt (void);
|
|||
import int64 OPM_SymRInt64 (void);
|
||||
import void OPM_SymRLReal (LONGREAL *lr);
|
||||
import void OPM_SymRReal (REAL *r);
|
||||
import void OPM_SymRSet (uint32 *s);
|
||||
import void OPM_SymRSet (uint64 *s);
|
||||
import void OPM_SymWCh (CHAR ch);
|
||||
import void OPM_SymWInt (int64 i);
|
||||
import void OPM_SymWLReal (LONGREAL lr);
|
||||
import void OPM_SymWReal (REAL r);
|
||||
import void OPM_SymWSet (uint32 s);
|
||||
import void OPM_SymWSet (uint64 s);
|
||||
import void OPM_Write (CHAR ch);
|
||||
import void OPM_WriteHex (int64 i);
|
||||
import void OPM_WriteInt (int64 i);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue