pforth
pforth copied to clipboard
Portable Forth in C
On Mac, I used the instructions from the README.md: cmake . make EXPECTED it to build. ACTUAL result was this failure: ``` Scanning dependencies of target PForth_lib [ 2%] Building...
Compiled PForth under FreeDOS and DosBox as 32bit version with a DOS extender (dos4gw). README has the details. Needs #196 to be merged in advance to work. (Update: #196 is...
One short demonstration how to compile custom code with PForth for the "unix" build. Custom code resides in separate "custom" folder. Setup, compilation and cleanup are handled by one shell...
Shows how to access any argument after '--' on the Pforth command line as a custom code solution. notes: - Requires #187 as prerequisite (TODO: update when it is merged...
DOS cannot handle long filenames. Updated all Makefiles and CMakeLists.txt to reflect the changes. Special thanks to https://github.com/guberathome for providing scripts to do the conversion. See #201 The original and...
Some files do not follow the 8.3 DOS filename convention. This is still causing problems for some DOS builds! _Originally posted by @philburk in https://github.com/philburk/pforth/pull/201#discussion_r2461835125_
See #207 and #212
pforth has the floating point natural log function, FLN, but does not have not FEXP, the floating point exponential function. This is to respectfully request that FEXP be added to...