v0.7 PSI_CHXBasic - Chixpy/Emuteca GitHub Wiki

Warning

Esta ayuda es para la versión 0.7. Está obsoleta e incompleta.

La unidad PSI_CHXBasic incluye definiciones básicas para usar en Pascal Script que no son incluidas por defecto en el motor.

Tipos

SizeInt

  {$ifdef CPU64}
    SizeInt: Int64;
  {$endif CPU64}
  {$ifdef CPU32}
    SizeInt: Longint;
  {$endif CPU32}
  {$ifdef CPU16}
    SizeInt: Integer;
  {$endif CPU32}   

Entero con signo de la arquitectura del procesador.

SizeUInt

  {$ifdef CPU64}
    SizeUInt: Int64;
  {$endif CPU64}
  {$ifdef CPU32}
    SizeUInt: DWord;
  {$endif CPU32}
  {$ifdef CPU16}
    SizeUInt: Word;
  {$endif CPU32}   

Entero sin signo de la arquitectura del procesador.

⚠️ **GitHub.com Fallback** ⚠️