EU 2.4, Win32/DOS32 dif.
- Posted by r.schr at t-online.de Feb 22, 2003
- 412 views
Hi Rob, ex.exe uses under DOS32 obviously the emulator lib, even if a coprocessor is present (run attached example as tst.ex and as tst.exw and see the difference). As I remember, you considered to compile ex.exe with inline code as well as the emulator lib, so ex.exe can always use the coprocessor if present, and the emulator lib otherwise. Although this increases the size of ex.exe slightly. What will you do? Have a nice day, Rolf ------------------------------------------------------- include get.e -- wait_key() integer k printf(1,"%24.16e\n", power(10,300)*power(10,-300)) k = wait_key() ------------------------------------------------------ results: 1.0000000000000330e+000 under DOS32 (executed as tst.ex) 1.0000000000000000e+000 under WIN32 (executed as tst.exw)