> Is there any other alternative to modifying or rewriting the > compiler file. > I would rather be able to use some tool and make the binaries > work. The > compiler file for mumps is a huge file.
If the compiler produces x86 object code directly, you have no other alternative than to rewrite the code generator. You could try to emulate a x86 processor, but the slow speed of the emulators will make the code unusably slow. If you do the rewrite, you may want to emit bytecodes for the Java virtual machine instead of native code. That will probably make the compiler more portable in the future. -- db
