The <asmtypes.h> header file


  
This header file contains a set of predefined types which are common in assembly programs:

BOOLBoolean (0/1)
BYTEbyte (unsigned)
WORDword (unsigned)
DWORDdouble word (unsigned)
SBYTEsigned byte
SWORDsigned word
SDWORDsingle double word
UBYTEunsigned byte
UWORDunsigned word
UDWORD   unsigned double word
UCHARunsigned char
SCHARsigned char
USHORTunsigned short
SSHORTsigned short
UINTunsigned int
SINTsigned int
ULONGunsigned long
SLONGsigned long

Return to the main index