ffa_ch17_peh.kv         1 
ffa_ch17_peh.kv         2 
ffa_ch17_peh.kv         3 
ffa_ch17_peh.kv         4 
ffa_ch17_peh.kv         5 
ffa_ch17_peh.kv         6 
ffa_ch17_peh.kv         7 
ffa_ch17_peh.kv         8 
ffa_ch17_peh.kv         9 
ffa_ch17_peh.kv        10 
ffa_ch17_peh.kv        11 
ffa_ch17_peh.kv        12 
ffa_ch17_peh.kv        13 
ffa_ch17_peh.kv        14 
ffa_ch17_peh.kv        15 
ffa_ch17_peh.kv        16 
ffa_ch17_peh.kv        17 
ffa_ch17_peh.kv        18 
ffa_ch17_peh.kv        19 
ffa_ch17_peh.kv        20 with Limits;   use Limits;
ffa_ch17_peh.kv        21 with FFA_RNG;  use FFA_RNG;
ffa_ch17_peh.kv        22 
ffa_ch17_peh.kv        23 
ffa_ch17_peh.kv        24 package FFA_Calc is
ffa_ch17_peh.kv        25    
ffa_ch17_peh.kv        26    
ffa_ch17_peh.kv        27    subtype Peh_Tape_Range is Positive range 1 .. Max_Peh_TapeSpace;
ffa_ch17_peh.kv        28    type Peh_Tapes is array(Peh_Tape_Range range <>) of Character;
ffa_ch17_peh.kv        29    
ffa_ch17_peh.kv        30    
ffa_ch17_peh.kv        31    type Peh_Verdicts is (Yes, No, Mu);
ffa_ch17_peh.kv        32    
ffa_ch17_peh.kv        33    
ffa_ch17_peh.kv        34    type Peh_Dimensions is
ffa_ch17_peh.kv        35       record
ffa_ch17_peh.kv        36          Width     : Positive;
ffa_ch17_peh.kv        37          Height    : Positive;
ffa_ch17_peh.kv        38          TapeSpace : Peh_Tape_Range;
ffa_ch17_peh.kv        39          Life      : Natural;
ffa_ch17_peh.kv        40       end record;
ffa_ch17_peh.kv        41    
ffa_ch17_peh.kv        42    
ffa_ch17_peh.kv        43    subtype ControlStack_Range is Natural range 0 .. Peh_Control_Stack_Size;
ffa_ch17_peh.kv        44    
ffa_ch17_peh.kv        45    
ffa_ch17_peh.kv        46    
ffa_ch18_subrouti...   47    
ffa_ch18_subrouti...   48    subtype Subroutine_Table_Range is Natural range 0 .. Subroutine_Table_Size;
ffa_ch18_subrouti...   49    
ffa_ch18_subrouti...   50    
ffa_ch17_peh.kv        51    
ffa_ch17_peh.kv        52    procedure Validate_Peh_Dimensions(Dimensions : in Peh_Dimensions);
ffa_ch17_peh.kv        53    
ffa_ch17_peh.kv        54    
ffa_ch17_peh.kv        55    function Peh_Machine(Dimensions : in Peh_Dimensions;
ffa_ch17_peh.kv        56                         Tape       : in Peh_Tapes;
ffa_ch17_peh.kv        57                         RNG        : in RNG_Device) return Peh_Verdicts;
ffa_ch17_peh.kv        58    
ffa_ch17_peh.kv        59 end FFA_Calc;