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/15 17:39] 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 172: | Line 179: | ||
| * '' | * '' | ||
| * '' | * '' | ||
| - | * '' | + | * '' |
| * '' | * '' | ||
| + | * '' | ||
| + | * '' | ||
| There are also built-in features like: | There are also built-in features like: | ||
| Line 256: | Line 265: | ||
| - Dialog | - Dialog | ||
| - sqlite | - sqlite | ||
| + | - FDTUI (better than FDSHELL which runs at 100% cpu) - '' | ||
| + | - IMGEDIT '' | ||
| + | - pmge '' | ||
| ==== Installing manually in FreeDOS ==== | ==== Installing manually in FreeDOS ==== | ||
| Line 304: | Line 316: | ||
| Text Browser: Links C: | Text Browser: Links C: | ||
| GUI Browser: Dillo C: | GUI Browser: Dillo C: | ||
| + | GUI Browser: Arachnae | ||
| ===== Programming ===== | ===== Programming ===== | ||
| Line 329: | 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 344: | 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`. | ||