Hi guys, I am using keil C51 to do the program and debugging the cypress FX2 ezusb chip. In my project options I selected Cypress FX2 as the device type. Should I add an include file in my .a51 file? Also, if I need to add one instruction at location 0043h, how do I do it? I tried CSEG 0043h, keil says syntax error. I am new to both cypress fx2 and keil.
There is nothing special or magic about include files; Including a file is exactly equivalent to having just typed its contents verbatim into the source file.
Therefore you never have to use an include file - but it may often be more convenient to do so...
I know there is nothing magical about include files. But they make life convenient and code looks much nicer.
So what was the question?