We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
hi frends. how do i change exe in vc++ to keil? i mean i have lot of exe on my pc and want to run on my microcontroller but dont how to?
how do i change exe in vc++ to keil?
You cannot ! Visual C++ (I assume this is what vc++ means) is a compiler for the Intel x86 architecture, and will produce output that runs on x86-compatible processors. Keil C51 is a compiler for the '51 architecture and will produce output that runs on '51-compatible chips.
You will need to recompile the source C files with C51 in order to get them to run on a '51 microcontroller. Whether it is sensible to do so is yet another question.