mirror of
https://github.com/vishapoberon/compiler.git
synced 2026-04-06 21:32:26 +00:00
added Reset() function to VT100 module.
This commit is contained in:
parent
590398b27e
commit
963fe0d2d5
1 changed files with 9 additions and 2 deletions
|
|
@ -168,8 +168,15 @@ CONST
|
||||||
|
|
||||||
END EscSeq2;
|
END EscSeq2;
|
||||||
|
|
||||||
|
PROCEDURE Reset*;
|
||||||
|
VAR
|
||||||
|
cmd : ARRAY 6 OF CHAR;
|
||||||
|
BEGIN
|
||||||
|
COPY(Escape, cmd);
|
||||||
|
Strings.Append("c", cmd);
|
||||||
|
Out.String(cmd);
|
||||||
|
Out.Ln;
|
||||||
|
END Reset;
|
||||||
(* Cursor up
|
(* Cursor up
|
||||||
moves cursor n cells in the given direction. if the cursor is already at the edge of the screen, this has no effect *)
|
moves cursor n cells in the given direction. if the cursor is already at the edge of the screen, this has no effect *)
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue