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');