1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115
|
<!-- $Id: build48.html,v 1.2 2002/11/04 01:50:39 skaus Exp $ -->
<HTML>
<HEAD>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-15">
<META NAME="GENERATOR" CONTENT="VI">
<META NAME="AUTHOR" CONTENT="Steffen Kaiser">
<TITLE>HOW to compile FreeCOM v0.83 Beta 48</TITLE>
</HEAD>
<BODY>
<H1>HOW to Compile FreeCOM v0.83 Beta 48 in Ten Steps</H1>
Because of several complaints about how to compile FreeCOM, this description
has been crafted to show this process step-by-step.
<H2>Table of Contents</H2>
<A HREF="#h2-preparations">Preparations</A>
<BR> <A HREF="#h3-usedsys">Used System</A>
<BR> <A HREF="#h3-libs">Required Programs and Libraries</A>
<BR><A HREF="#h2-sysconfig">System Configuration</A>
<BR> <A HREF="#h3-config.sys">CONFIG.SYS</A>
<BR> <A HREF="#h3-autoexec.bat">AUTOEXEC.BAT</A>
<BR><A HREF="#h2-one-time">One-time Preparations</A>
<BR> <A HREF="#h3-cd-bin">Contents of Directory C:\BIN</A>
<BR> <A HREF="#h3-cd-root">Contents of Directory C:\</A>
<BR><A HREF="#h2-10steps">Ten Steps to Compile FreeCOM v0.83 Beta 48</A>
<BR><P>
<HR>
<H2><A NAME="h2-preparations">Preparations</A></H2>
This description starts at the scratch, hence, it is assumed that no
other tools are already installed and up and running. If there are some
program available, you must take precautions to incorporate them into the
process.
<H3><A NAME="h3-usedsys">Used System</A></H3>
This examples uses the following system:
<UL>
<LI>VMware v2.0 (to emulate an unique PC, with a newly formatted, virtual
partition)
<LI>OS: FreeDOS kernel 2027rc, binary release downloaded from:
<A HREF="http://freedos.sourceforge.net/kernel/ke2027rc.zip">sf.net</A>;
build date 2002-10-23 23:17:37
<LI>Shell: FreeCOM v0.83 Beta 46 (tested with both binary release and XMS-Swap
release); downloaded from <A HREF="http://freedos.sourceforge.net/freecom/packages/083Beta46/">FreeCOM's home page on sf.net</A>
<BR>The <EM>binary</EM> variant is installed as the default shell
<TT>COMMAND.COM</TT>, the XMS-Swapping variant is installed as
<TT>COM-XMS.COM</TT>; both on the root directory of the hard disk parition.
</UL>
<H3><A NAME="h3-libs">Required Programs and Libraries</A></H3>
All this stuff will be made accessable to the Virtual PC through CD-Rom,
as this is the only variant for this VMware release.
<UL>
<LI>Nasm (aka <EM>Netware Assembler</EM>) is used to compile enclosed
assembly files, downloaded from: <A HREF="http://belnet.dl.sourceforge.net/sourceforge/nasm/nsm09835.zip">http://belnet.dl.sourceforge.net/sourceforge/nasm/nsm09835.zip</A>;
Nasm is hosted on <A HREF="http://nasm.sourceforge.net/">sf.net</A>, too;
because of bugs in earlier release, do use version v0.98.35 or newer of the
16-bit pre-compiled Nasm.
<BR>The Nasm Zip-file is unpacked into directory <TT>nasm</TT> on the CD-Rom.
<LI>Turbo C++ v1.01 is used to compile the enclosed C files, download from
the <A HREF="http://community.borland.com/article/0,1410,21751,00.html">Borland museum</A>.
<BR>The Turbo C++ Zip-file is unpacked into directory <TT>tcpp101</TT> on
the CD-Rom.
<LI>Some <TT>unzip</TT>-utility for DOS, I'm using
<QUOTE>UnZip 5.12 of 28 August 1994, by Info-ZIP</QUOTE>.
<BR>Executable is located at the root directory of the CD-Rom.
<LI>Some plain text editor for DOS, I'm using <A HREF="ftp://ftp.cs.pdx.edu/pub/elvis/">Elvis v2.1_4 for DOS</A>.
<BR>The executable is named <TT>vi.exe</TT> and is located at the
root directory of the CD-Rom.
<LI><A HREF="http://freedos.sourceforge.net/freecom/packages/083Beta48/com083beta48.zip">The source of FreeCOM v0.83 Beta 48</A>, located on the root directory
of the CD-Rom.
<BR>Or pick <A HREF="http://freedos.sourceforge.net/freecom/packages/">some
newer release</A>.
<LI><A HREF="http://freedos.sourceforge.net/freecom/packages/suppl.zip">The SUPPL library</A>
pre-compiled for Turbo C++ v1.01, located on the root directory of the CD-Rom.
</UL>
<H2><A NAME="h2-sysconfig">System Configuration</A></H2>
<H3><A NAME="h3-config.sys">CONFIG.SYS</A></H3>
<PRE><A HREF="#files20">files=20</A>
<A HREF="#fdxms">device=fdxms.sys</A>
<A HREF="#nec_ide">device=NEC_IDE.SYS /D:CD001</A>
<A HREF="#com-xms">;shell=com-xms.com /p/e:256</A></PRE>
<H3><A NAME="h3-autoexec.bat">AUTOEXEC.BAT</A></H3>
<PRE><A HREF="#path">path c:\bin;c:\tcpp101\bin</A>
<A HREF="#set-temp">set TEMP=C:\Temp</A>
<A HREF="#shsucdx">SHSUCDX.EXE /D:CD001</A></PRE>
<H2><A NAME="h2-one-time">One-time Preparations</A></H2>
<FONT SIZE=-1>Note: On drive <TT>D:</TT> the CD-Rom has been mounted.</FONT>
<PRE><A HREF="#mkdir-temp">MKDIR %TEMP%</A>
<A HREF="#mkdir-bin">MKDIR C:\BIN</A>
<A HREF="#copy">COPY D:\NASM\NASM.EXE D:\VI.EXE D:\UNZIP.EXE C:\BIN</A>
d:
<A HREF="#cd-tcp">cd tcpp101</A>
<A HREF="#install-tcp">install</A></PRE>
<H3><A NAME="h3-cd-bin">Contents of Directory C:\BIN</A></H3>
<PRE> Volume in drive C has no label
Volume Serial Number is 58EF-6DA7
Directory of C:\BIN
. <DIR> 11-03-02 9:44a
.. <DIR> 11-03-02 9:44a
VI EXE 372,158 04-25-01 12:37p
SHSUCDX EXE 15,726 10-20-00 10:34p
NASM EXE 252,452 09-12-02 6:37p
UNZIP EXE 43,691 08-29-94 9:37p
4 file(s) 684,027 bytes
2 dir(s) 24,221,696 bytes free</PRE>
<H3><A NAME="h3-cd-root">Contents of Directory C:\</A></H3>
<PRE> Volume in drive C has no label
Volume Serial Number is 58EF-6DA7
Directory of C:\
KERNEL SYS 40,962 10-27-02 11:17p
COMMAND COM 86,573 10-16-02 9:10p
COM-XMS COM 88,203 10-16-02 9:07p
CONFIG SYS 86 10-30-02 1:24p
AUTOEXEC BAT 69 10-30-02 11:28a
FDXMS SYS 4,836 03-02-02 6:55p
NEC_IDE SYS 29,089 04-26-96 8:37a
TEMP <DIR> 04-25-01 1:32p
TCPP101 <DIR> 11-03-02 9:56a
BIN <DIR> 11-03-02 9:44a
7 file(s) 249,818 bytes
3 dir(s) 24,221,696 bytes free</PRE>
<H2><A NAME="h2-10steps">Ten Steps to Compile FreeCOM v0.83 Beta 48</A></H2>
<PRE>c:
CD \
<A HREF="#unzip-com">unzip d:\COM083BE.ZIP</A>
<A HREF="#unzip-fcom">unzip -q freecom.zip</A>
del freecom.zip
<A HREF="#cd-suppl">cd freecom\suppl\</A>
<A HREF="#unzip-suppl">unzip -n d:\suppl.zip</A>
<A HREF="#cd-main">cd ..</A>
<A HREF="#edit-cfg">vi config.mak</A>
<A HREF="#build">build</A></PRE>
<P>There should be a <TT>COMMAND.COM</TT> located in the current
directory now.
<P>There is also a <A HREF="#build-log">sample build log</A>.
<P>The <TT>build</TT> script uses the <A HREF="#build-env">environment
variables <TT>SWAP</TT> and <TT>LNG</TT></A>.
<HR>
<H1>Appendix A: Description of settings</H1>
<UL>
<LI><P><A NAME="files20"><TT>FILES=20</TT></A> is required by Turbo C++.
<LI><P><A NAME="fdxms">The driver <TT>fdxms.sys</TT></A> provides a XMS API
similiar to <TT>HIMEM.SYS</TT>
<LI><P><A NAME="nec_ide">The driver <TT>NEC_IDE.SYS</TT></A> I've got along
with some Oak IDE-CD-Rom device and seems to handle all recent IDE-CD-Rom
drivers pretty well, like the emulated CD-Rom in VMware.
<BR>The option <TT>/D:CD001</TT> causes the driver to install a device
named <TT>CD001</TT> for the CD-Rom device in order to be found by the
CD-redirector later on.
<LI><P><A NAME="com-xms">Uncomment <FONT SIZE=-1>(remove the semicolon from the
first column of the line)</FONT> the line in order
to use the XMS-Swapping variant</A> of FreeCOM v0.83 Beta 46.
<LI><P><A NAME="path">The two directories in which DOS is to search for
executable programs:
<OL>
<LI>In <TT>C:\BIN</TT> all relevant tools, such as assembler and Unzip,
will be located.
<LI>In <TT>c:\tcpp101\bin</TT> the executables of the Turbo C++ compiler
are located.
</OL>
<LI><P><A NAME="set-temp">The environment variable <TT>TEMP</TT></A> points to the
directory temporary files are to be created in.
<LI><P><A NAME="shsucdx">Loads the CD-Rom mid-level driver</A>, similiar to
<TT>MSCDEX</TT>, the option <TT>/D:CD001</TT> must specify the same driver
name as the <A HREF="#nec_ide">low-level CD-Rom driver</A>.
<LI><P><A NAME="mkdir-temp">Create the temporary directory</A>, if not already
present.
<LI><P><A NAME="mkdir-bin">Create the directory for the executables</A>,
if not already present.
<LI><P><A NAME="copy">Copy all the executables</A>, like assembler, text editor
and unzip-utility, to the central directory.
<LI><P><A NAME="cd-tcp">The unpacked Turbo C++ v1.01 install files</A>
are located in this directory.
<LI><P><A NAME="install-tcp">Runs the Turbo C++ v1.01 installation program</A>. The
following settings are used:
<UL>
<LI>Source drive: <TT>D</TT>
<LI>Source directory: <TT>\TCPP101</TT>
<LI>select entry <TT>Turbo C++ Directory</TT>
<LI>Target directory: <TT>C:\TCPP101</TT>
<BR>All the remaining installation directories should automatically be changed
below this directory.
<LI>select entry <TT>Start Installation</TT>
</UL>
<LI><P><A NAME="unzip-com">The <TT>SHSUCDX</TT> presents the long filename
<TT>com083Beta48.zip</TT></A> as <TT>COM083BE.ZIP</TT>, hence, unzipping
the FreeCOM source archive.
<BR><EM>Note:</EM> This is the only point to change when compiling another
FreeCOM release usually; just unpack the particular <TT>.ZIP</TT> file here.
However, it is <EM>not</EM> recommended to overwrite an elder release of
FreeCOM; when doing so, you should at least pass the <TT>-r</TT> option
to <TT>build</TT>!
<LI><P><A NAME="unzip-fcom">Because the FreeCOM archive is a double-zipped
archive</A>, <TT>FREECOM.ZIP</TT> is the <EM>real</EM> archive containing
the source files. In result a new directory <TT>FREECOM</TT> containing all
the source tree is created. The option <TT>-q</TT> causes <TT>unzip</TT> to
run quitely.
<LI><P><A NAME="cd-suppl">Go to the default location of the SUPPL library</A>.
<LI><P><A NAME="unzip-suppl">Unzip the pre-compiled SUPPL library</A>, the
option <TT>-n</TT> causes <TT>unzip</TT> to not complain about the already
present files in the current directory.
<LI><P><A NAME="cd-main">Go to the main directory</A> of FreeCOM.
<LI><P><A NAME="edit-cfg">Edit the configuration</A> of the build process
via adopting the file <TT>CONFIG.MAK</TT>:
<BR><EM>Note:</EM> The default configuration has been adjusted to
comply with these steps, hence, no adoptions are required; so you might skip
this step as well.
<LI><P><A NAME="build">Actually runs the build process</A>:
<UL>
<LI>in order to force to <STRONG>re</STRONG>-built all portions of FreeCOM,
e.g. when the source code was overwritten with another version or
when switching between XMS-Swapping enabled or disabled, pass the
<TT>-r</TT> option as the first argument to <TT>build</TT>.
<LI>to build the XMS-Swapping variant of FreeCOM specify <TT>xms-swap</TT>
as the first (or second) argument, e.g.: <PRE>build.bat xms-swap</PRE>.
<LI>to build FreeCOM with some specific language other than English, specify
the language as the last argument, e.g.: <PRE>build.bat Dutch</PRE> or
<PRE>build.bat xms-swap Dutch</PRE>. For each supported language, a
corresponding <TT>.LNG</TT> file is located in sub-directory <TT>STRINGS</TT>,
hence, the command <TT>DIR STRINGS\*.LNG</TT> displays a list of supported
languages. Do not specify the extension <TT>.LNG</TT> on <TT>build</TT>'s
command line!
</UL>
<BR><A NAME="build-env">The environment variable <TT>SWAP</TT> is
internally used by the <TT>build</TT> script and is removed upon
successful finish.
<BR>The script stores the selected language, or <TT>English</TT>
if none has been selected on command line <STRONG>and</STRONG> the
variable is not already defined, into the environment
variable <TT>LNG</TT>; hence, the selected language keeps permanently
selected between different runs of <TT>build</TT>, until reset by the
user manually as the last argument of the <TT>build</TT> script, by
removing or changing the variable directly or by rebooting the system.
<LI><P><A NAME="build-log">
<EM>Note:</EM> This Logfile stops when building the <TT>TOOLS</TT>
directory.</A>
<PRE>File not found. - 'C:\FREECOM\LASTMAKE.MK'
File not found. - 'C:\FREECOM\TOOLS\*.MAP'
File not found. - 'C:\FREECOM\TOOLS\*.COM'
File not found. - 'C:\FREECOM\UTILS\*.MAP'
File not found. - 'C:\FREECOM\CRITER\*.OBJ'
File not found. - 'C:\FREECOM\CRITER\*.CFG'
MAKE0000.$$$ => C:\FREECOM\UTILS\TCCDOS.CFG
Turbo C++ Version 1.01 Copyright (c) 1990 Borland International
mktools.c:
Turbo Link Version 3.01 Copyright (c) 1987, 1990 Borland International
Turbo C++ Version 1.01 Copyright (c) 1990 Borland International
mkctxt.c:
Turbo Link Version 3.01 Copyright (c) 1987, 1990 Borland International
Turbo C++ Version 1.01 Copyright (c) 1990 Borland International
chunk.c:
Turbo Link Version 3.01 Copyright (c) 1987, 1990 Borland International
Turbo C++ Version 1.01 Copyright (c) 1990 Borland International
mkinfres.c:
Turbo Link Version 3.01 Copyright (c) 1987, 1990 Borland International
MAKE0000.$$$ => C:\FREECOM\STRINGS\TCCDOS.CFG
Turbo C++ Version 1.01 Copyright (c) 1990 Borland International
fixstrs.c:
Turbo Link Version 3.01 Copyright (c) 1987, 1990 Borland International
FIXSTRS: loading file DEFAULT.LNG
FIXSTRS: loading file english
FIXSTRS: building STRINGS resource
FIXSTRS: building STRINGS library source files
strings.h => C:\FREECOM\STRINGS\..\strings.h
MAKE0001.$$$ => C:\FREECOM\STRINGS\MKSTRLIB.BAT
Turbo C++ Version 1.01 Copyright (c) 1990 Borland International
critstrs.c:
Turbo Link Version 3.01 Copyright (c) 1987, 1990 Borland International
CRITSTRS: load file DEFAULT.ERR
CRITSTRS: load file english
CRITSTRS: Running validation check
CRITSTRS: Dumping CRITER strings resource
TLIB 3.01 Copyright (c) 1987, 1990 Borland International
+str0000.obj &
+str0001.obj &
+str0002.obj &
+str0003.obj &
+str0004.obj &
+str0005.obj &
+str0006.obj &
+str0007.obj &
+str0008.obj &
+str0009.obj &
+str000a.obj &
+str000b.obj &
+str000c.obj &
+str000d.obj &
+str000e.obj &
+str000f.obj &
+str0010.obj &
+str0011.obj &
+str0012.obj &
+str0013.obj &
+str0014.obj &
+str0015.obj &
+str0016.obj &
+str0017.obj &
+str0018.obj &
+str0019.obj &
+str001a.obj &
+str001b.obj &
+str001c.obj &
+str001d.obj &
+str001e.obj &
+str001f.obj &
+str0020.obj &
+str0021.obj &
+str0022.obj &
+str0023.obj &
+str0024.obj &
+str0025.obj &
+str0026.obj &
+str0027.obj &
+str0028.obj &
+str0029.obj &
+str002a.obj &
+str002b.obj &
+str002c.obj &
+str002d.obj &
+str002e.obj &
+str002f.obj &
+str0030.obj &
+str0031.obj &
+str0032.obj &
+str0033.obj &
+str0034.obj &
+str0035.obj &
+str0036.obj &
+str0037.obj &
+str0038.obj &
+str0039.obj &
+str003a.obj &
+str003b.obj &
+str003c.obj &
+str003d.obj &
+str003e.obj &
+str003f.obj &
+str0040.obj &
+str0041.obj &
+str0042.obj &
+str0043.obj &
+str0044.obj &
+str0045.obj &
+str0046.obj &
+str0047.obj &
+str0048.obj &
+str0049.obj &
+str004a.obj &
+str004b.obj &
+str004c.obj &
+str004d.obj &
+str004e.obj &
+str004f.obj &
+str0050.obj &
+str0051.obj &
+str0052.obj &
+str0053.obj &
+str0054.obj &
+str0055.obj &
+str0056.obj &
+str0057.obj &
+str0058.obj &
+str0059.obj &
+str005a.obj &
+str005b.obj &
+str005c.obj &
+str005d.obj &
+str005e.obj &
+str005f.obj &
+str0060.obj &
+str0061.obj &
+str0062.obj &
+str0063.obj &
+str0064.obj &
+str0065.obj &
+str0066.obj &
+str0067.obj &
+str0068.obj &
+str0069.obj &
+str006a.obj &
+str006b.obj &
+str006c.obj &
+str006d.obj &
+str006e.obj &
+str006f.obj &
+str0070.obj &
+str0071.obj &
+str0072.obj &
+str0073.obj &
+str0074.obj &
+str0075.obj &
+str0076.obj &
+str0077.obj &
+str0078.obj &
+str0079.obj &
+str007a.obj &
+str007b.obj &
+str007c.obj &
+str007d.obj &
+str007e.obj &
+str007f.obj &
+str0080.obj &
+str0081.obj &
+str0082.obj &
+str0083.obj &
+str0084.obj &
+str0085.obj &
+str0086.obj &
+str0087.obj &
+str0088.obj &
+str0089.obj &
+str008a.obj &
+str008b.obj &
+str008c.obj &
+str008d.obj &
+str008e.obj &
+str008f.obj &
+str0090.obj &
+str0091.obj &
+str0092.obj &
+str0093.obj &
+str0094.obj &
+str0095.obj &
+str0096.obj &
+str0097.obj &
+str0098.obj &
+str0099.obj &
+str009a.obj &
+str009b.obj &
+str009c.obj &
+str009d.obj &
+str009e.obj &
+str009f.obj &
+str00a0.obj &
+str00a1.obj &
+str00a2.obj &
+str00a3.obj &
+str00a4.obj &
+str00a5.obj &
+str00a6.obj &
+str00a7.obj &
+str00a8.obj &
+str00a9.obj &
+str00aa.obj &
+str00ab.obj &
+str00ac.obj &
+str00ad.obj &
+str00ae.obj &
+str00af.obj &
+str00b0.obj &
+str00b1.obj &
+str00b2.obj &
+str00b3.obj &
+str00b4.obj &
+str00b5.obj &
+str00b6.obj &
+str00b7.obj &
+str00b8.obj &
+str00b9.obj &
+str00ba.obj &
+str00bb.obj &
+str00bc.obj &
+str00bd.obj &
+str00be.obj &
+str00bf.obj &
+str00c0.obj &
+str00c1.obj &
+str00c2.obj &
+str00c3.obj &
+str00c4.obj &
+str00c5.obj &
+str00c6.obj &
+str00c7.obj &
+str00c8.obj &
+str00c9.obj &
+str00ca.obj &
+str00cb.obj &
+str00cc.obj &
+str00cd.obj &
+str00ce.obj &
+str00cf.obj &
+str00d0.obj &
+str00d1.obj &
+str00d2.obj &
+str00d3.obj &
+str00d4.obj &
+str00d5.obj &
+str00d6.obj &
+str00d7.obj &
+str00d8.obj &
+str00d9.obj &
+str00da.obj &
+str00db.obj &
+str00dc.obj &
+str00dd.obj &
+str00de.obj &
+str00df.obj &
+str00e0.obj &
+str00e1.obj &
+str00e2.obj
strings.lib => C:\FREECOM\STRINGS\STRINGS\..\strings.lib
strings.lst => C:\FREECOM\STRINGS\STRINGS\..\strings.lst
context.h_c => C:\FREECOM\CRITER\..\context.h_c
context.inc => C:\FREECOM\CRITER\..\context.inc
MAKE0000.$$$ => C:\FREECOM\LIB\TCCDOS.CFG
Turbo C++ Version 1.01 Copyright (c) 1990 Borland International
alprmblk.c:
alsysblk.c:
beep_l.c:
beep_n.c:
brk_get.c:
brk_set.c:
cbreak.c:
cbs.c:
cd_dir.c:
cgetch.c:
Turbo C++ Version 1.01 Copyright (c) 1990 Borland International
cgettime.c:
chgctxt.c:
chgdrv.c:
chgenv.c:
chgenvc.c:
chgenvr.c:
clrline.c:
cmdinput.c:
comfile.c:
Turbo C++ Version 1.01 Copyright (c) 1990 Borland International
compfile.c:
ctxt.c:
ctxt_adr.c:
ctxt_as.c:
ctxt_chg.c:
ctxt_clr.c:
ctxt_get.c:
ctxt_inf.c:
ctxt_mk.c:
Turbo C++ Version 1.01 Copyright (c) 1990 Borland International
ctxt_mkn.c:
ctxt_pop.c:
ctxt_psh.c:
ctxt_rnu.c:
ctxt_set.c:
ctxt_ss.c:
ctxt_vw.c:
curdatel.c:
Turbo C++ Version 1.01 Copyright (c) 1990 Borland International
curtime.c:
cwd.c:
dateget.c:
dateset.c:
dbg_c.c:
dbg_mem.c:
dbg_prnt.c:
dbg_s.c:
dbg_sn.c:
devopen.c:
Turbo C++ Version 1.01 Copyright (c) 1990 Borland International
dispcnt.c:
drvnum.c:
efct_001.c:
exec.c:
exec1.c:
farread.c:
fcompl1.c:
fcompl2.c:
fdattr.c:
Turbo C++ Version 1.01 Copyright (c) 1990 Borland International
fdevopen.c:
fdsattr.c:
fillcomp.c:
find.c:
freep.c:
frsysblk.c:
fstpcpy.c:
gallstr.c:
get1mcb.c:
Turbo C++ Version 1.01 Copyright (c) 1990 Borland International
getenv.c:
goxy.c:
grabfcom.c:
gumblink.c:
hdlrctxt.c:
hist_get.c:
hist_set.c:
inputdos.c:
is_empty.c:
Turbo C++ Version 1.01 Copyright (c) 1990 Borland International
is_fnamc.c:
is_fnstr.c:
is_pchr.c:
isadev.c:
keyprsd.c:
kswap_c.c:
lastdget.c:
lastdset.c:
leadopt.c:
Turbo C++ Version 1.01 Copyright (c) 1990 Borland International
ltrimcl.c:
ltrimsp.c:
lwr1wd.c:
match.c:
messages.c:
mk_rddir.c:
mktmpfil.c:
msg_dflt.c:
msg_dps.c:
Turbo C++ Version 1.01 Copyright (c) 1990 Borland International
msg_fstr.c:
msg_get.c:
msg_gpt.c:
msg_mkey.c:
msg_prmp.c:
mux_ae.c:
nls.c:
nls_date.c:
nls_time.c:
Turbo C++ Version 1.01 Copyright (c) 1990 Borland International
num_fmt.c:
onoff.c:
openf.c:
optsb.c:
optsi.c:
optss.c:
parsenum.c:
pr_date.c:
pr_prmpt.c:
pr_time.c:
Turbo C++ Version 1.01 Copyright (c) 1990 Borland International
prprompt.c:
realnum.c:
res.c:
res_r.c:
res_w.c:
resfile.c:
rmtmpfil.c:
rtrimcl.c:
rtrimsp.c:
salloc.c:
Turbo C++ Version 1.01 Copyright (c) 1990 Borland International
samefile.c:
scancmd.c:
scanopt.c:
showcmds.c:
skqwd.c:
split.c:
sumblink.c:
tempfile.c:
timeget.c:
Turbo C++ Version 1.01 Copyright (c) 1990 Borland International
timeset.c:
tmpnam.c:
trimcl.c:
trimsp.c:
txtlend.c:
unquote.c:
vcgetch.c:
vcgetstr.c:
where.c:
err1.c:
Turbo C++ Version 1.01 Copyright (c) 1990 Borland International
err2.c:
err3.c:
err4.c:
err5.c:
err6.c:
err7.c:
err8.c:
err9.c:
err10.c:
err11.c:
err12.c:
err13.c:
Turbo C++ Version 1.01 Copyright (c) 1990 Borland International
err14.c:
err15.c:
err16.c:
err17.c:
err18.c:
err19.c:
err20.c:
err21.c:
err22.c:
err23.c:
err24.c:
Turbo C++ Version 1.01 Copyright (c) 1990 Borland International
err25.c:
err26.c:
err27.c:
err28.c:
err29.c:
err30.c:
err31.c:
err32.c:
err33.c:
err34.c:
err35.c:
Turbo C++ Version 1.01 Copyright (c) 1990 Borland International
err36.c:
err37.c:
err38.c:
err39.c:
err40.c:
err41.c:
err42.c:
err43.c:
err44.c:
err45.c:
err46.c:
Turbo C++ Version 1.01 Copyright (c) 1990 Borland International
err47.c:
err48.c:
err49.c:
err50.c:
err51.c:
err52.c:
err53.c:
err54.c:
err55.c:
err56.c:
err57.c:
Turbo C++ Version 1.01 Copyright (c) 1990 Borland International
err58.c:
err59.c:
err60.c:
err61.c:
err62.c:
err63.c:
err64.c:
err65.c:
err66.c:
err67.c:
err68.c:
Turbo C++ Version 1.01 Copyright (c) 1990 Borland International
err69.c:
err70.c:
err71.c:
err72.c:
err73.c:
err74.c:
err75.c:
err76.c:
err77.c:
err78.c:
err79.c:
Turbo C++ Version 1.01 Copyright (c) 1990 Borland International
err80.c:
TLIB 3.01 Copyright (c) 1987, 1990 Borland International
+alprmblk.obj &
+alsysblk.obj &
+beep_l.obj &
+beep_n.obj &
+brk_get.obj &
+brk_set.obj &
+cbreak.obj &
+cbs.obj &
+cd_dir.obj &
+cgetch.obj &
+cgettime.obj &
+chgctxt.obj &
+chgdrv.obj &
+chgenv.obj &
+chgenvc.obj &
+chgenvr.obj &
+clrline.obj &
+cmdinput.obj &
+comfile.obj &
+compfile.obj &
+ctxt.obj &
+ctxt_adr.obj &
+ctxt_as.obj &
+ctxt_chg.obj &
+ctxt_clr.obj &
+ctxt_get.obj &
+ctxt_inf.obj &
+ctxt_mk.obj &
+ctxt_mkn.obj &
+ctxt_pop.obj &
+ctxt_psh.obj &
+ctxt_rnu.obj &
+ctxt_set.obj &
+ctxt_ss.obj &
+ctxt_vw.obj &
+curdatel.obj &
+curtime.obj &
+cwd.obj &
+dateget.obj &
+dateset.obj &
+dbg_c.obj &
+dbg_mem.obj &
+dbg_prnt.obj &
+dbg_s.obj &
+dbg_sn.obj &
+devopen.obj &
+dispcnt.obj &
+drvnum.obj &
+efct_001.obj &
+exec.obj &
+exec1.obj &
+farread.obj &
+fcompl1.obj &
+fcompl2.obj &
+fdattr.obj &
+fdevopen.obj &
+fdsattr.obj &
+fillcomp.obj &
+find.obj &
+freep.obj &
+frsysblk.obj &
+fstpcpy.obj &
+gallstr.obj &
+get1mcb.obj &
+getenv.obj &
+goxy.obj &
+grabfcom.obj &
+gumblink.obj &
+hdlrctxt.obj &
+hist_get.obj &
+hist_set.obj &
+inputdos.obj &
+is_empty.obj &
+is_fnamc.obj &
+is_fnstr.obj &
+is_pchr.obj &
+isadev.obj &
+keyprsd.obj &
+kswap_c.obj &
+lastdget.obj &
+lastdset.obj &
+leadopt.obj &
+lowexec.obj &
+ltrimcl.obj &
+ltrimsp.obj &
+lwr1wd.obj &
+match.obj &
+messages.obj &
+mk_rddir.obj &
+mktmpfil.obj &
+msg_dflt.obj &
+msg_dps.obj &
+msg_fstr.obj &
+msg_get.obj &
+msg_gpt.obj &
+msg_mkey.obj &
+msg_prmp.obj &
+mux_ae.obj &
+nls.obj &
+nls_date.obj &
+nls_time.obj &
+num_fmt.obj &
+onoff.obj &
+openf.obj &
+optsb.obj &
+optsi.obj &
+optss.obj &
+parsenum.obj &
+pr_date.obj &
+pr_prmpt.obj &
+pr_time.obj &
+prprompt.obj &
+realnum.obj &
+res.obj &
+res_r.obj &
+res_w.obj &
+resfile.obj &
+rmtmpfil.obj &
+rtrimcl.obj &
+rtrimsp.obj &
+salloc.obj &
+samefile.obj &
+scancmd.obj &
+scanopt.obj &
+showcmds.obj &
+skqwd.obj &
+split.obj &
+sumblink.obj &
+tempfile.obj &
+timeget.obj &
+timeset.obj &
+tmpnam.obj &
+trimcl.obj &
+trimsp.obj &
+txtlend.obj &
+unquote.obj &
+vcgetch.obj &
+vcgetstr.obj &
+where.obj &
+err1.obj &
+err2.obj &
+err3.obj &
+err4.obj &
+err5.obj &
+err6.obj &
+err7.obj &
+err8.obj &
+err9.obj &
+err10.obj &
+err11.obj &
+err12.obj &
+err13.obj &
+err14.obj &
+err15.obj &
+err16.obj &
+err17.obj &
+err18.obj &
+err19.obj &
+err20.obj &
+err21.obj &
+err22.obj &
+err23.obj &
+err24.obj &
+err25.obj &
+err26.obj &
+err27.obj &
+err28.obj &
+err29.obj &
+err30.obj &
+err31.obj &
+err32.obj &
+err33.obj &
+err34.obj &
+err35.obj &
+err36.obj &
+err37.obj &
+err38.obj &
+err39.obj &
+err40.obj &
+err41.obj &
+err42.obj &
+err43.obj &
+err44.obj &
+err45.obj &
+err46.obj &
+err47.obj &
+err48.obj &
+err49.obj &
+err50.obj &
+err51.obj &
+err52.obj &
+err53.obj &
+err54.obj &
+err55.obj &
+err56.obj &
+err57.obj &
+err58.obj &
+err59.obj &
+err60.obj &
+err61.obj &
+err62.obj &
+err63.obj &
+err64.obj &
+err65.obj &
+err66.obj &
+err67.obj &
+err68.obj &
+err69.obj &
+err70.obj &
+err71.obj &
+err72.obj &
+err73.obj &
+err74.obj &
+err75.obj &
+err76.obj &
+err77.obj &
+err78.obj &
+err79.obj &
+err80.obj
MAKE0000.$$$ => C:\FREECOM\CMD\TCCDOS.CFG
Turbo C++ Version 1.01 Copyright (c) 1990 Borland International
alias.c:
beep.c:
break.c:
call.c:
cdd.c:
chdir.c:
cls.c:
copy.c:
ctty.c:
date.c:
del.c:
dir.c:
dirs.c:
Turbo C++ Version 1.01 Copyright (c) 1990 Borland International
doskey.c:
echo.c:
exit.c:
exit2.c:
fddebug.c:
for.c:
goto.c:
history.c:
if.c:
memory.c:
mkdir.c:
path.c:
Turbo C++ Version 1.01 Copyright (c) 1990 Borland International
pause.c:
popd.c:
prompt.c:
pushd.c:
rem.c:
ren.c:
rmdir.c:
set.c:
shift.c:
time.c:
truename.c:
type.c:
Turbo C++ Version 1.01 Copyright (c) 1990 Borland International
verify.c:
which.c:
TLIB 3.01 Copyright (c) 1987, 1990 Borland International
+alias.obj &
+beep.obj &
+break.obj &
+call.obj &
+cdd.obj &
+chdir.obj &
+cls.obj &
+copy.obj &
+ctty.obj &
+date.obj &
+del.obj &
+dir.obj &
+dirs.obj &
+doskey.obj &
+echo.obj &
+exit.obj &
+exit2.obj &
+fddebug.obj &
+for.obj &
+goto.obj &
+history.obj &
+if.obj &
+memory.obj &
+mkdir.obj &
+path.obj &
+pause.obj &
+popd.obj &
+prompt.obj &
+pushd.obj &
+rem.obj &
+ren.obj &
+rmdir.obj &
+set.obj &
+shift.obj &
+time.obj &
+truename.obj &
+type.obj &
+verify.obj &
+which.obj
MAKE0000.$$$ => C:\FREECOM\SHELL\TCCDOS.CFG
Turbo C++ Version 1.01 Copyright (c) 1990 Borland International
cswapc.c:
batch.c:
cmdtable.c:
command.c:
Turbo C++ Version 1.01 Copyright (c) 1990 Borland International
expalias.c:
init.c:
kswap.c:
loadhigh.c:
module.c:
redir.c:
ver.c:
Turbo Link Version 3.01 Copyright (c) 1987, 1990 Borland International
Warning: __fstpcpy defined in module FSTPCPY.OBJ is duplicated in module FSTPCPY
Warning: _exit defined in module cswapc.c is duplicated in module EXIT
Warning: _putenv defined in module ENV_PUT.OBJ is duplicated in module PUTENV
shell\command.exe => C:\FREECOM\COMMAND.COM
infores =>> C:\FREECOM\COMMAND.COM
criter\criter1 =>> C:\FREECOM\COMMAND.COM
criter\criter =>> C:\FREECOM\COMMAND.COM
strings\strings.dat =>> C:\FREECOM\COMMAND.COM
Poking: @19DF:0080 = 1</PRE>
</UL>
<HR>
<HR WIDTH=50%><HR WIDTH=25%><HR WIDTH=5%><P ALIGN=CENTER>
Copyright 2002 © Steffen Kaiser - current maintainer of FreeCOM
<P>
<FONT SIZE=1>
<A HREF="ftp://ftp.cs.pdx.edu/pub/elvis/"><IMG SRC="../images/vi.gif" ALT="Elvis - The VI clone"></A>
</FONT>
</BODY>
</HTML>
|