+ added comments to virtual comparison flags

This commit is contained in:
carl 2002-05-27 19:16:08 +00:00
parent 0db5d24629
commit 6f8a05be13

View File

@ -54,16 +54,16 @@ interface
TOpCmp = TOpCmp =
( (
OC_NONE, OC_NONE,
OC_EQ, { equality comparison } OC_EQ, { equality comparison }
OC_GT, OC_GT, { greater than (signed) }
OC_LT, OC_LT, { less than (signed) }
OC_GTE, OC_GTE, { greater or equal than (signed) }
OC_LTE, OC_LTE, { less or equal than (signed) }
OC_NE, OC_NE, { not equal }
OC_BE, OC_BE, { less or equal than (unsigned) }
OC_B, OC_B, { less than (unsigned) }
OC_AE, OC_AE, { greater or equal than (unsigned) }
OC_A OC_A { greater than (unsigned) }
); );
{ OS_NO is also used memory references with large data that can { OS_NO is also used memory references with large data that can
@ -101,7 +101,10 @@ implementation
end. end.
{ {
$Log$ $Log$
Revision 1.10 2002-05-18 13:34:05 peter Revision 1.11 2002-05-27 19:16:08 carl
+ added comments to virtual comparison flags
Revision 1.10 2002/05/18 13:34:05 peter
* readded missing revisions * readded missing revisions
Revision 1.9 2002/05/16 19:46:35 carl Revision 1.9 2002/05/16 19:46:35 carl