User Tools

Site Tools


operating_systems:freedos

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
Last revision Both sides next revision
operating_systems:freedos [2022/03/21 16:12]
nanodano
operating_systems:freedos [2022/03/21 21:01]
nanodano
Line 309: Line 309:
 Text Browser: Links C:\Links\links.exe Text Browser: Links C:\Links\links.exe
 GUI Browser: Dillo C:\DILLO\DILLO.exe GUI Browser: Dillo C:\DILLO\DILLO.exe
 +GUI Browser: Arachnae
 ===== Programming ===== ===== Programming =====
  
Line 334: Line 334:
  
 == BASIC == == BASIC ==
 +
 += BWBASIC =
 +
 +Bytewater must be run with a 32-bit protected mode DOS extender like ''dos32a''.
 +
 +<code>
 +dos32a bwbasic.exe
 +</code>
 +
 += FreeBASIC =
  
 https://www.youtube.com/watch?v=tIGokkohQho https://www.youtube.com/watch?v=tIGokkohQho
Line 350: Line 360:
  
 == C/C++ == == C/C++ ==
 +
 +
  
 = OpenWatcom = = OpenWatcom =
 +
 +  * There is ''conio.h'' for terminal (like ncurses)
 +  * and ''graph.h'' for doing graphics
  
 <code> <code>
 REM Without this env var, linker fails REM Without this env var, linker fails
 set WATCOM=C:\devel\watcomc set WATCOM=C:\devel\watcomc
-REM wcc, wpp, wlink - compiler/linker + 
-REM wcl - compile and link (like gcc)+REM wcc, wpp, wlink - compilers & linker 
 +REM wcl - compile and link in one
 wcl hello.cpp /IC:\devel\watcomc\h wcl hello.cpp /IC:\devel\watcomc\h
 +
 +REM TO allow the omission of /I flag set INCLUDE
 +set INCLUDE=C:\devel\watcomc\h
 +
 +REM Now you can simply compile & link with:
 +wcl hello.cpp
 </code> </code>
  
operating_systems/freedos.txt · Last modified: 2022/03/21 23:53 by nanodano