Link to home
Start Free TrialLog in
Avatar of churley
churley

asked on

C++ to Assembly

Does anyone know if there is a way to convert a .cpp program,using either Borland 5.02 or MS Visual C++ 5, to an assembly program that can be used by an IBM 3270 system?
Avatar of nietod
nietod

Most C++ compilers will have options to produce assembly output.  If you have a C++ compiler for the IBM computer that does, you could use that.

Forget trying to take the assembly ooutput for an x86 computer and convert it to 3270 assembly.  It would be a huge task.  You would probably be better of starting from scratch
Try and get a __Native__ C++ compiler for your IBM system. Then recompile on this platform.  Forget about trying to compile on your PC.
If I were you, I'd purchase a cross-compiler.  They are only about $500 million!!
ASKER CERTIFIED SOLUTION
Avatar of jhance
jhance

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial