Added MEGAMAX project

This commit is contained in:
2020-10-01 15:10:43 +02:00
parent 9c803e3aa5
commit 18fb82e228
4 changed files with 25 additions and 0 deletions
+4
View File
@@ -0,0 +1,4 @@
# ---> LaTeX
build/*
.lock-waf_linux_build
+7
View File
@@ -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.
BIN
View File
Binary file not shown.
+14
View File
@@ -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: *)