Subversion Repositories SvarDOS

Rev

Rev 397 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
395 mateuszvis 1
 
2
                         *** SVARCOM VS FREECOM ***
3
 
4
 
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
7
things.
8
 
9
 
10
*** MEMORY FOOTPRINT *********************************************************
11
 
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
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
16
is designed with 21'st century machines in mind and not IBM PC compatibles.
17
 
18
SvarDOS does not rely on XMS and performs runtime swapping that works on any
19
IBM PC compatible machine.
20
 
21
 
22
*** NLS RESSOURCES ***********************************************************
23
 
24
FreeCOM requires custom NLS files. While the vast majority of FreeDOS programs
25
use a single "standard" (CATS/Kitten), FreeCOM uses a different approach with
26
pre-compiled NLS strings, which makes it necessary to distribute as many
27
binary blobs as there are supported languages. It also makes the translation
28
process much more difficult.
29
 
30
SvarDOS will use Kitten-style translations, like other applications.
31
 
32
 
33
*** CODE COMPLEXITY **********************************************************
34
 
35
FreeCOM is a complex beast: it aims for compatibility with multiple compilers
36
and supports many embedded features. This makes the code uneasy to follow and
37
changes require careful testing on all supported compilers and all possible
38
build variants.
39
 
40
SvarDOS, on the other hand, is meant to be simple and universal. It is meant
41
to be compiled with OpenWatcom only, which makes a ton of IFDEF's go away. It
42
also won't integrate features that can be reasonably implemented as external
43
tools (typically: DOSKEY). It strives to reimplement the functionality of
44
MS-DOS 5/6.
45
 
46
 
47
*** NON-FREE LICENSE *********************************************************
48
 
49
FreeCOM code is released under the terms of a license that restrains the
50
freedom of its users due to its virality (GPL).
51
 
52
SvarCOM is released under the terms of a liberal and permissive (MIT) license
53
that does not impose limitations on how users may or may not use it.
54
 
55
 
56
********************************************************************** EOF ***