Rev 1494 |
Details |
Compare with Previous |
Last modification |
View Log
| RSS feed
Rev |
Author |
Line No. |
Line |
1494 |
mateusz.vi |
1 |
<?php
|
|
|
2 |
|
|
|
3 |
$PROJNAME = 'SvarDOS MORE';
|
|
|
4 |
$SHORT = 'displays output one screen at a time';
|
|
|
5 |
|
|
|
6 |
$LONGHTML = '
|
1495 |
mateusz.vi |
7 |
<p>SvarDOS MORE is a filter that displays output one screen at a time. It is part of the SvarDOS project, and as such it shares SvarDOS\' principles of minimalism, compactness and bare-bones functionality. It is:</p>
|
1494 |
mateusz.vi |
8 |
|
|
|
9 |
<ul>
|
|
|
10 |
<li>multilingual (use the LANG variable, eg. "SET LANG=PL" switches to Polish)</li>
|
|
|
11 |
<li>TINY! (fits within a single disk sector)</li>
|
|
|
12 |
</ul>
|
|
|
13 |
|
|
|
14 |
<p>Usage:</p>
|
|
|
15 |
|
|
|
16 |
<pre>
|
|
|
17 |
MORE < FILE.TXT
|
|
|
18 |
TYPE FILE.TXT | MORE
|
|
|
19 |
</pre>
|
|
|
20 |
|
|
|
21 |
<p>SvarDOS MORE is hand crafted in x86 assembly and built using the excellent
|
1495 |
mateusz.vi |
22 |
<a href="https://github.com/swanlizard/a72">A72 assembler</a> by Mr R. Swan.</p>
|
1494 |
mateusz.vi |
23 |
';
|
|
|
24 |
|
|
|
25 |
$COPYRDATE = '2023';
|
|
|
26 |
|
|
|
27 |
?>
|