1481 |
mateusz.vi |
1 |
|
|
|
2 |
SvarDOS MORE
|
|
|
3 |
|
|
|
4 |
SvarDOS MORE is a filter that displays output one screen at a time. It is part
|
|
|
5 |
of the SvarDOS project <http://svardos.org>, and as such it shares SvarDOS'
|
|
|
6 |
principles of minimalism, compactness and bare-bones functionality. It is:
|
|
|
7 |
|
1488 |
mateusz.vi |
8 |
- multilingual (via the LANG variable, eg. "SET LANG=PL" switches to Polish)
|
1481 |
mateusz.vi |
9 |
- tiny (fits within a single disk sector)
|
|
|
10 |
|
|
|
11 |
Usage:
|
|
|
12 |
|
|
|
13 |
MORE < FILE.TXT
|
|
|
14 |
TYPE FILE.TXT | MORE
|
|
|
15 |
|
|
|
16 |
SvarDOS MORE is hand crafted in x86 assembly and built using the excellent
|
|
|
17 |
A72 assembler by Mr R. Swan <https://github.com/swanlizard/a72>.
|
|
|
18 |
|
|
|
19 |
|
|
|
20 |
### Distributed under the terms of the MIT LICENSE ###########################
|
|
|
21 |
|
|
|
22 |
Copyright (C) 2023 Mateusz Viste
|
|
|
23 |
|
|
|
24 |
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
25 |
of this software and associated documentation files (the "Software"), to
|
|
|
26 |
deal in the Software without restriction, including without limitation the
|
|
|
27 |
rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
|
|
28 |
sell copies of the Software, and to permit persons to whom the Software is
|
|
|
29 |
furnished to do so, subject to the following conditions:
|
|
|
30 |
|
|
|
31 |
The above copyright notice and this permission notice shall be included in
|
|
|
32 |
all copies or substantial portions of the Software.
|
|
|
33 |
|
|
|
34 |
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
35 |
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
36 |
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
37 |
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
38 |
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
|
39 |
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
|
40 |
IN THE SOFTWARE.
|
|
|
41 |
|
|
|
42 |
|
|
|
43 |
###################################################################### EOF ###
|