Subversion Repositories SvarDOS

Rev

Rev 440 | Rev 473 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 440 Rev 446
Line 1... Line 1...
1
 
1
 
2
                         *** SVARCOM vs FREECOM ***
2
                         === SVARCOM vs FREECOM ===
3
 
3
 
4
 
4
 
5
The FreeCOM project is an impressive piece of software, but there are a few
5
The FreeCOM project is an impressive piece of software, but there are a few
6
things that I do not like about it. SvarCOM is my attempt at addressing these
6
things that I do not like about it. SvarCOM is my attempt at addressing these
7
things.
7
things.
8
 
8
 
9
 
9
 
10
*** MEMORY FOOTPRINT *********************************************************
10
=== MEMORY FOOTPRINT =========================================================
11
 
11
 
12
FreeCOM is not suitable for low-memory machines. It takes about 55K of
12
FreeCOM is not suitable for low-memory machines. It takes about 55K of
13
conventional memory when XMS is unavailable. XMS being a 386+ thing, FreeCOM
13
conventional memory when XMS is unavailable. XMS being a 386+ thing, FreeCOM
14
is a poor fit for pre-386 machines. There is the KSSF hack, but it is a kludge
14
is a poor fit for pre-386 machines. There is the KSSF hack, but it is a kludge
15
with many limitations. As pointed out by one of the FreeCOM authors, FreeCOM
15
with many limitations. As pointed out by one of the FreeCOM authors, FreeCOM
Line 17... Line 17...
17
 
17
 
18
SvarDOS does not rely on XMS and performs runtime swapping that works on any
18
SvarDOS does not rely on XMS and performs runtime swapping that works on any
19
IBM PC compatible machine.
19
IBM PC compatible machine.
20
 
20
 
21
 
21
 
22
*** NLS RESSOURCES ***********************************************************
22
=== NLS RESSOURCES ===========================================================
23
 
23
 
24
FreeCOM requires custom NLS ressources. While the vast majority of FreeDOS
24
FreeCOM requires custom NLS ressources. While the vast majority of FreeDOS
25
programs use a single "standard" (CATS), FreeCOM uses a different approach
25
programs use a single "standard" (CATS), FreeCOM uses a different approach
26
with NLS strings built into the binary. This makes it necessary to distribute
26
with NLS strings built into the binary. This makes it necessary to distribute
27
as many binary blobs as there are supported languages. Another consequence is
27
as many binary blobs as there are supported languages. Another consequence is
Line 31... Line 31...
31
 
31
 
32
SvarDOS uses CATS-style translations in a precompiled form and loads the
32
SvarDOS uses CATS-style translations in a precompiled form and loads the
33
strings that match the LANG variable.
33
strings that match the LANG variable.
34
 
34
 
35
 
35
 
36
*** CODE COMPLEXITY **********************************************************
36
=== CODE COMPLEXITY ==========================================================
37
 
37
 
38
FreeCOM is a complex beast: it aims for compatibility with multiple compilers
38
FreeCOM is a complex beast: it aims for compatibility with multiple compilers
39
and supports many embedded features. This makes the code uneasy to follow and
39
and supports many embedded features. This makes the code uneasy to follow and
40
changes require careful testing on all supported compilers and all possible
40
changes require careful testing on all supported compilers and all possible
41
build variants.
41
build variants.
Line 45... Line 45...
45
does not integrate extra features that can be reasonably implemented through
45
does not integrate extra features that can be reasonably implemented through
46
external tools (typically: DOSKEY). It strives to reimplement the baseline
46
external tools (typically: DOSKEY). It strives to reimplement the baseline
47
functionality of MS-DOS 5/6.
47
functionality of MS-DOS 5/6.
48
 
48
 
49
 
49
 
50
*** NON-FREE LICENSE *********************************************************
50
=== NON-FREE LICENSE =========================================================
51
 
51
 
52
FreeCOM code is released under the terms of a license that restrains the
52
FreeCOM code is released under the terms of a license that restrains the
53
freedom of its users due to its virality (GPL).
53
freedom of its users due to its virality (GPL).
54
 
54
 
55
SvarCOM is released under the terms of a liberal and permissive (MIT) license
55
SvarCOM is released under the terms of a liberal and permissive (MIT) license
56
that does not impose limitations on how users may or may not use it.
56
that does not impose limitations on how users may or may not use it.
57
 
57
 
58
 
58
 
59
********************************************************************** EOF ***
59
====================================================================== EOF ===