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 all iam woring on keilc of restricted 1000bytes programme ,actually i implemented programme in c and assembly but i would like to add some more c code to my project but its not accepting if it crosses 1000bytes programme code. so now i tried to convert my c programme to assembly using src directive but when i compiled .src file +asm file iam not getting any errors but at the same time results are not coming whats this problem. how can i convert c programme to asm good suggetions are welcomed regards robert w
Remember, the restricted version is called the Evaluation version - that's because its purpose is to allow you to Evaluate the suitability of the tools to your project. Having written over 1000 bytes, you should surely by now be in a position to decide whether the tools are suitable to your purpose: if they are, then buy them; if they aren't, try elsewhere! "results are not coming" What do you mean by that?
Hi andrew neil thanks for responding to my mail. now i have only one way that i have to convert c to asm then i might include some more code in my project.Actually iam simulating one new protocol that will transmitted to wirelessly to a short distance .but my company dont wannna buy the full keil software bcos of cost.now i have to see in this way only , so could you please suggest me how to convert c to asm with some examples if you have then please send it to me it will be big help for me regards robert
but my company dont wannna buy the full keil software bcos of cost. If you you know you do not want to buy the Keil software, why are you evaluating it?. Erik
"my company dont wannna buy the full keil software bcos of cost" and just how much is all this messing about costing in terms of your time?! "so could you please suggest me how to convert c to asm with some examples if you have then please send it to me it will be big help for me" How about answering the previous question: What do you mean by "results are not coming"?
For cheap and free tools, look under "LOW-DOLLAR DEVELOPMENT SYSTEMS" at: http://www.8052.com/links.phtml
"I am working on keil C of restricted 1000 bytes programme" Not sure where you get that figure of 1000 from; the limit is 2K object size, and 16K source size for editing: http://www.keil.com/demo/limits.htm "its not accepting if it crosses 1000 bytes programme code. so now I tried to convert my C programme to assembly" How will that help? The limits apply to the Compiler, Assembler, and Linker: "Programs that generate more than 2 Kbytes of object code will not compile, assemble, or link." http://www.keil.com/demo/limits.htm SO it makes no difference whether your source is 'C' or assembler; if the total object size is over the limit, the Linker won't allow it!