|
|
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: 797 (0x31d)
Types: TextFile
Names: »B«
└─⟦180fe333a⟧ Bits:30000405 8mm tape, Rational 1000, SW CATALOG, 10_20_0
└─⟦180fe333a⟧ Bits:30000537 8mm tape, Rational 1000, SW Catalog 10_20_0
└─⟦5cb1d1d7f⟧ »DATA«
└─⟦3b1ee7bd8⟧
└─⟦this⟧
separate (Vt100)
procedure Clear_Screen is
----------------------------------------------------------------------
--|
--| NAME: CLEAR_SCREEN
--|
--| OVERVIEW:
--| This procedure clears the screen on a vt100 using an escape code
--| sequence.
--|
--| EXCEPTIONS HANDLED:
--| none
--|
--| HISTORY:
--| written by May Lee March 1985
--|
----------------------------------------------------------------------
Escape : constant Character := Ascii.Esc;
L_Bracket : constant Character := Ascii.L_Bracket;
Clear_Screen : String (1 .. 80);
begin
-- put(escape);
-- put(l_bracket);
-- put('H');
-- put(escape);
-- put(l_bracket);
-- put('J');
null;
end Clear_Screen;