Replies: 5 comments 2 replies
-
Hypothetically I've been wondering about this myself. OpenWatcom is a compiler that can target 8086 processor, and hosts itself. It seems that it should work to tell it to build itself targeting 8086 but probably has issues. It's just a question of how many. |
Beta Was this translation helpful? Give feedback.
-
Running OpenWatcom on DOS needs a 32bit DOS extender (included in OpenWatcom) You can use OpenWatcom to cross compile your programs Running your compiled programs on a 8088 (with the 8 bit data bus) |
Beta Was this translation helpful? Give feedback.
-
@winspool : And if the program being cross-compiled is OpenWatcom itself? |
Beta Was this translation helpful? Give feedback.
-
The 640k memory limit of DOS and the segment size of 64k are the problems here. To work with a resonable amount of memory, Much simpler solution to handle the memory requirement of a compiler toolchain |
Beta Was this translation helpful? Give feedback.
-
I was suspecting the solution to the memory problem was disable whole program optimization and compile each function independently. But anyway, it's clearly a lot of work. I recommend just leaving this item open and seeing just how much desire really does show up. Most likely not enough. |
Beta Was this translation helpful? Give feedback.
-
need 8088 support to run it under MartyPC
Beta Was this translation helpful? Give feedback.
All reactions