From 188cebab4fc3fef039b50966ce08eca1555a7b79 Mon Sep 17 00:00:00 2001 From: Bryan Ashby Date: Sun, 3 Sep 2017 20:43:13 -0600 Subject: [PATCH] Notes --- core/ansi_term.js | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/core/ansi_term.js b/core/ansi_term.js index 7bc76634..8b4094f1 100644 --- a/core/ansi_term.js +++ b/core/ansi_term.js @@ -17,12 +17,22 @@ // * http://www.bbsdocumentary.com/library/PROGRAMS/GRAPHICS/ANSI/ansisys.txt // * http://academic.evergreen.edu/projects/biophysics/technotes/program/ansi_esc.htm // +// VTX +// * https://github.com/codewar65/VTX_ClientServer/blob/master/vtx.txt +// // General // * http://en.wikipedia.org/wiki/ANSI_escape_code // * http://www.inwap.com/pdp10/ansicode.txt // // Other Implementations // * https://github.com/chjj/term.js/blob/master/src/term.js +// +// +// For a board, we need to support the semi-standard ANSI-BBS "spec" which +// is bastardized mix of DOS ANSI.SYS, cterm.txt, bansi.txt and a little other. +// This gives us NetRunner, SyncTERM, EtherTerm, most *nix terminals, compatibilitiy +// with legit oldschool DOS terminals, and so on. +// // ENiGMA½ const miscUtil = require('./misc_util.js');