
{ Define constants used for calculating addresses of FDE entries.
{   The FDE array is in mainframe wired or job fixed at a large address defined
{   by GFC$FDE_TABLE_BASE. Each entry is GFC$FDE_SIZE bytes long. NOTE that the actual
{   CYBIL type definition must be exactly this size. There is a check in
{   SYM$DEADSTART_INITIALIZATION to verify this size.

  CONST
    gfc$fde_table_base = 0ff00000(16), {267386880 (Big and 0 mod 16384)}
    gfc$fde_control_table_base = gfc$fde_table_base - 16384,
    gfc$fde_size = 104;   {Must be 0 mod 8 and >= than actual FDE size


