DataMuseum.dk

Presents historical artifacts from the history of:

Rational R1000/400 Tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about Rational R1000/400 Tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - download
Index: ┃ B T

⟦17fadb0e2⟧ TextFile

    Length: 1220 (0x4c4)
    Types: TextFile
    Names: »B«

Derivation

└─⟦149519bd4⟧ Bits:30000546 8mm tape, Rational 1000, !projects 93-07-13
    └─ ⟦124ff5788⟧ »DATA« 
        └─⟦this⟧ 
└─⟦a7d1ea751⟧ Bits:30000550 8mm tape, Rational 1000, !users!projects 94_04_11
    └─ ⟦129cab021⟧ »DATA« 
        └─⟦this⟧ 
└─⟦f64eaa120⟧ Bits:30000752 8mm tape, Rational 1000, !projects 93 02 16
    └─ ⟦6f12a12be⟧ »DATA« 
        └─⟦this⟧ 
└─⟦2f6cfab89⟧ Bits:30000547 8mm tape, Rational 1000, !projects 94-01-04
    └─ ⟦d65440be7⟧ »DATA« 
        └─⟦this⟧ 

TextFile

with Bus;
with Memoire;
with Z_Debug;
with Z80;
with Gui_Interface;
with Erreur;

use Z80;

package body D_Gui_Driver is

    -- VARIABLES ------------------------------------------------------------

    Cnt_Reset, Cnt_Quit, Cnt_Go, Cnt_Step, Cnt_Stop, Cnt_Open_Ok, Value :
       Integer := 0;
    Etat_Z80 : Z80.T_Etat;
    Ecran_Rafraichi : Boolean := True;
    Cnt_Memory_Add : Integer := 0;

    -- PROCEDURES -----------------------------------------------------------

    procedure Memory is separate;
    procedure Open is separate;
    procedure Reset is separate;
    procedure Quit is separate;
    procedure Go is separate;
    procedure Step is separate;
    procedure Stop is separate;
    procedure Error is separate;
    procedure Process_Event is

    begin
        Etat_Z80 := Z80.Etat;

        Memory;
        Error;
        Reset;
        Open;
        Quit;
        Go;
        Step;
        Stop;

        Etat_Z80 := Z80.Etat;

        if ((Etat_Z80 = Z80.Endormi) and then (not Ecran_Rafraichi)) then
            Z_Debug.Rafraichir_Ecran;
            Gui_Interface.Set_Message (Message => "Stop ");
            Ecran_Rafraichi := True;
        end if;
    end Process_Event;

end D_Gui_Driver;