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,33 @@
compile insert rti_Text_Equates
/*
** Copyright (C) 1992-2016 Revelation Software Inc. All Rights Reserved **
Author : Mr C
Date : 16 Feb 2016
Purpose : Non-printable Text character equates
Comments
========
Amended Date Reason
======= ==== ======
Mr C 22 Feb 16 Added SPACE$
*/
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
#IFNDEF _RTI_TEXT_EQUATES_
#DEFINE _RTI_TEXT_EQUATES_
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
equ CRLF$ to \0D0A\
equ CR$ to \0D\
equ LF$ to \0A\
equ TAB$ to \09\
equ SPACE$ to \20\
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
#ENDIF
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////