diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..f47b2d4 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +# ---> LaTeX +build/* +.lock-waf_linux_build + diff --git a/MM2SHELL.M2D b/MM2SHELL.M2D new file mode 100644 index 0000000..cc71f8d --- /dev/null +++ b/MM2SHELL.M2D @@ -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. + diff --git a/MM2SHELL.M2P b/MM2SHELL.M2P new file mode 100644 index 0000000..7535b3b Binary files /dev/null and b/MM2SHELL.M2P differ diff --git a/src/telnet.m b/src/telnet.m new file mode 100644 index 0000000..63b6cf9 --- /dev/null +++ b/src/telnet.m @@ -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: *)