From a729944af73b1628f936e1f2489561e33d4d6b9f Mon Sep 17 00:00:00 2001 From: Bryan Ashby Date: Sun, 4 Sep 2016 17:44:51 -0600 Subject: [PATCH] ANSI resources (comments) --- core/ansi_term.js | 26 +++++++++++++++++++------- 1 file changed, 19 insertions(+), 7 deletions(-) diff --git a/core/ansi_term.js b/core/ansi_term.js index 06bf864f..c9902c7d 100644 --- a/core/ansi_term.js +++ b/core/ansi_term.js @@ -2,15 +2,27 @@ 'use strict'; // -// ANSI Terminal Support +// ANSI Terminal Support Resources // -// Resources: -// * http://ansi-bbs.org/ -// * http://www.bbsdocumentary.com/library/PROGRAMS/GRAPHICS/ANSI/ansisys.txt -// * http://en.wikipedia.org/wiki/ANSI_escape_code -// * https://github.com/chjj/term.js/blob/master/src/term.js -// * http://www.inwap.com/pdp10/ansicode.txt +// ANSI-BBS +// * http://ansi-bbs.org/ // +// CTerm / SyncTERM +// * https://github.com/protomouse/synchronet/blob/master/src/conio/cterm.txt +// +// BananaCom +// * http://www.bbsdocumentary.com/library/PROGRAMS/GRAPHICS/ANSI/bansi.txt +// +// ANSI.SYS +// * http://www.bbsdocumentary.com/library/PROGRAMS/GRAPHICS/ANSI/ansisys.txt +// * http://academic.evergreen.edu/projects/biophysics/technotes/program/ansi_esc.htm +// +// 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 // ENiGMA½ const miscUtil = require('./misc_util.js');