added sysprog entities

This commit is contained in:
Infineon\StieberD
2024-03-25 15:17:34 -07:00
parent 600a8e1f61
commit 3a6a2b6b5b
1028 changed files with 171660 additions and 0 deletions

View File

@ -0,0 +1,29 @@
compile insert Logical
/*
** Copyright (C) 2012 Revelation Software Inc. All Rights Reserved **
Amended Date Reason
======= ==== ======
Mr C 18 Sept 12 Added header guards so this insert can be nested.
*/
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
#IFNDEF _LOGICAL_
#DEFINE _LOGICAL_
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
equ OTHERWISE$ to 1
equ TRUE$ to 1
equ FALSE$ to 0
equ YES$ to 1
equ NO$ to 0
Equ NULL$ to ""
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
#ENDIF
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////