You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
80 lines
2.7 KiB
80 lines
2.7 KiB
<!doctype html>
|
|
<html>
|
|
<meta charset="UTF-8">
|
|
<title>VT100 emulation - useful references</title>
|
|
</head>
|
|
<style>
|
|
body {
|
|
background: white;
|
|
color: black;
|
|
width: 825px;
|
|
margin:0 auto;
|
|
font-family:monospace;
|
|
line-height: 1.35em;
|
|
font-size: 12pt;
|
|
}
|
|
li,p {
|
|
white-space: pre;
|
|
}
|
|
ul, ol {
|
|
margin-top: 0;
|
|
margin-bottom: 0;
|
|
}
|
|
li {
|
|
margin-bottom: 0.3em;
|
|
}
|
|
</style>
|
|
|
|
<body>
|
|
|
|
<p>VT100 emulation resources collection Ondřej Hruška <ondra@ondrovo.com>, Sep 2017</p>
|
|
|
|
<hr>
|
|
|
|
<h1>VT100 emulation resources collection</h1>
|
|
|
|
<p>This page lists some files and sites I found helpful when developing <a href="https://github.com/MightyPork/ESPTerm">ESPTerm</a>.</p>
|
|
|
|
<h2>Web references</h2>
|
|
|
|
<ul>
|
|
<li>An invaluable resource in my research was the website <a href="http://vt100.net/">vt100.net</a> which provides
|
|
original manuals for many VT models.</li>
|
|
|
|
<li>The <a href="http://invisible-island.net/xterm/ctlseqs/ctlseqs.html">Xterm manual page</a> also proved immensely useful.
|
|
I even made a <a href="espterm-xterm.html">copy of it</a> with highlighted differences and missing features
|
|
in ESPTerm.</li>
|
|
|
|
<li>Some sequences can also be found in the <a href="https://www.gnu.org/software/screen/manual/html_node/Control-Sequences.html">GNU Screen manual page</a></li>
|
|
|
|
<li>Application Keys Mode became clear after reading this page:
|
|
<a href="http://www.tldp.org/HOWTO/Keyboard-and-Console-HOWTO-21.html">www.tldp.org/HOWTO/Keyboard-and-Console-HOWTO-21.html</a>.</li>
|
|
|
|
<li>When trying to understand what codes should be sent by function and control
|
|
keys, this page provided some great insight:
|
|
<a href="http://invisible-island.net/xterm/xterm-function-keys.html">invisible-island.net/xterm/xterm-function-keys.html</a></li>
|
|
</ul>
|
|
|
|
<h2>Collected files and memos</h2>
|
|
|
|
<p>Those are useful documents collected from various fileservers and university
|
|
home folders that I decided to preserve here for reference should the original
|
|
sources disappear (unfortunately that happens, and rare historical information
|
|
like this is lost).</p>
|
|
|
|
<ul>
|
|
<li><a href="./vt100.codes.txt">vt100.codes.txt</a></li>
|
|
<li><a href="./bjh21_all-escapes.txt">bjh21_all-escapes.txt</a></li>
|
|
<li><a href="./joesmith1984-ansicode.txt">joesmith1984-ansicode.txt</a></li>
|
|
<li><a href="./shuford_terminal_vt100_codes_news.txt">shuford_terminal_vt100_codes_news.txt</a></li>
|
|
<li><a href="./VT100 escape codes.html">VT100 escape codes.html</a></li>
|
|
<li><a href="./Locator Input Model for ANSI Terminals (sixth revision).html">Locator Input Model for ANSI Terminals (sixth revision).html</a></li>
|
|
</ul>
|
|
|
|
<p>Here are files I compiled from elsewhere:</p>
|
|
|
|
<ul>
|
|
<li><a href="./codepage437.txt">codepage437.txt</a> - DOS codepage 437 (Unicode point, Symbol, DOS ASCII code)</li>
|
|
</ul>
|
|
|
|
<p>[End of document]</p>
|
|
|