This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision Next revision | Previous revision | ||
|
operating_systems:freedos [2022/03/16 01:20] nanodano |
operating_systems:freedos [2022/03/21 23:53] (current) nanodano [Dealing with JemmEx out of memory error] |
||
|---|---|---|---|
| Line 101: | Line 101: | ||
| [[https:// | [[https:// | ||
| - | Edit '' | + | Edit '' |
| - | or try modifying the '' | + | Also refer to [[http:// |
| + | |||
| + | < | ||
| + | # Change from this | ||
| + | 1? | ||
| + | # to this | ||
| + | 1? | ||
| + | </ | ||
| ==== Dealing with unable to read hard disk error ==== | ==== Dealing with unable to read hard disk error ==== | ||
| Line 309: | Line 316: | ||
| Text Browser: Links C: | Text Browser: Links C: | ||
| GUI Browser: Dillo C: | GUI Browser: Dillo C: | ||
| + | GUI Browser: Arachnae | ||
| ===== Programming ===== | ===== Programming ===== | ||
| Line 334: | Line 341: | ||
| == BASIC == | == BASIC == | ||
| + | |||
| + | = BWBASIC = | ||
| + | |||
| + | Bytewater must be run with a 32-bit protected mode DOS extender like '' | ||
| + | |||
| + | < | ||
| + | dos32a bwbasic.exe | ||
| + | </ | ||
| + | |||
| + | = FreeBASIC = | ||
| https:// | https:// | ||
| Line 349: | Line 366: | ||
| ``` | ``` | ||
| - | == C == | + | == C/C++ == |
| + | |||
| + | |||
| + | |||
| + | = OpenWatcom = | ||
| + | |||
| + | * There is '' | ||
| + | * and '' | ||
| + | |||
| + | < | ||
| + | REM Without this env var, linker fails | ||
| + | set WATCOM=C: | ||
| + | |||
| + | REM wcc, wpp, wlink - compilers & linker | ||
| + | REM wcl - compile and link in one | ||
| + | wcl hello.cpp / | ||
| + | |||
| + | REM TO allow the omission of /I flag set INCLUDE | ||
| + | set INCLUDE=C: | ||
| + | |||
| + | REM Now you can simply compile & link with: | ||
| + | wcl hello.cpp | ||
| + | </ | ||
| + | |||
| + | = DJGPP = | ||
| Make sure DJGPP is installed from the FreeDOS CD-ROM using `fdimples`. | Make sure DJGPP is installed from the FreeDOS CD-ROM using `fdimples`. | ||