Force git rename of VT100 in bootstrap, make SYSTEM.* mdel independent.

This commit is contained in:
David Brown 2016-10-15 19:05:08 +01:00
parent 80de6dc216
commit 1507d9cb0a
34 changed files with 152 additions and 131 deletions

View file

@ -1,6 +1,6 @@
(* Test that interrupt and quit are handled correctly. *)
MODULE SignalTest;
IMPORT Console, Platform, Files;
IMPORT Console, Platform, Files, SYSTEM;
VAR result: Files.File; rider: Files.Rider;
@ -24,7 +24,7 @@ BEGIN
END wi;
PROCEDURE handle(signal: INTEGER);
PROCEDURE handle(signal: SYSTEM.INT32);
BEGIN
Console.Ln; Console.String("Signal: "); Console.Int(signal,1); Console.Ln;
ws("Signal "); wi(signal); wl;