Added MEGAMAX project
This commit is contained in:
4
.gitignore
vendored
Normal file
4
.gitignore
vendored
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
# ---> LaTeX
|
||||||
|
build/*
|
||||||
|
.lock-waf_linux_build
|
||||||
|
|
||||||
7
MM2SHELL.M2D
Normal file
7
MM2SHELL.M2D
Normal 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
MM2SHELL.M2P
Normal file
BIN
MM2SHELL.M2P
Normal file
Binary file not shown.
14
src/telnet.m
Normal file
14
src/telnet.m
Normal 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: *)
|
||||||
Reference in New Issue
Block a user