|
|
DataMuseum.dkPresents historical artifacts from the history of: Rational R1000/400 Tapes |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about Rational R1000/400 Tapes Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - metrics - downloadIndex: B T
Length: 1172 (0x494)
Types: TextFile
Names: »B«
└─⟦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⟧
with Z80_Defs, Bus, Memoire, Text_Io;
with Z80;
with Octet;
-- with Timer;
package body Z_Debug is
-- PROCEDURES -----------------------------------------------------------
procedure Je_Teste is
Tache_Debug : Pt_Tache_Debug;
begin
Tache_Debug := new T_Debug;
Text_Io.Put_Line ("je teste");
end Je_Teste;
-- TACHE ----------------------------------------------------------------
task body T_Debug is
Un_Octet : Octet.T_Octet := 25;
begin
Tache_Bus := new Bus.T_Bus;
Tache_Memoire := new Memoire.T_Memoire;
Tache_Z80 := new Z80.T_Z80;
-------------------------------------------------------------------
-- prologue
Tache_Bus.Reset;
Tache_Z80.Reset;
-- Tache_Z80.Lancer;
Tache_Z80.Pas_A_Pas;
Tache_Z80.Pas_A_Pas;
Tache_Z80.Pas_A_Pas;
Tache_Z80.Pas_A_Pas;
Tache_Z80.Pas_A_Pas;
-------------------------------------------------------------------
-- epilogue
-- Tache_Memoire.Fin;
-- Tache_Bus.Fin;
-- Tache_Z80.Fin;
end T_Debug;
end Z_Debug;