Added MEGAMAX project
This commit is contained in:
@@ -0,0 +1,4 @@
|
||||
# ---> LaTeX
|
||||
build/*
|
||||
.lock-waf_linux_build
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
# TELNET client for Atari ST
|
||||
|
||||
This program implements a simple telnet client for Atari ST systems,
|
||||
which makes use of the VT52 compatibility of the ST's console.
|
||||
|
||||
It uses STIG 1.26 as an IP driver.
|
||||
|
||||
Binary file not shown.
@@ -0,0 +1,14 @@
|
||||
MODULE Telnet;
|
||||
|
||||
FROM InOut IMPORT WriteString, WriteLn, Read;
|
||||
|
||||
VAR exit : CHAR;
|
||||
|
||||
|
||||
BEGIN
|
||||
WriteString("Hello, World!");
|
||||
WriteLn;
|
||||
Read(exit);
|
||||
END Telnet.
|
||||
|
||||
(* vim: set filetype=modula2: *)
|
||||
Reference in New Issue
Block a user