Subversion Repositories SvarDOS

Rev

Rev 1488 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

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