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.
Hello everyone. Now I use the C167 evaluation board with two external FLASH ROM---29F010. I want to make clear how the system will run when it is reseted. In the .m66 file of a project, I find the address of the startup section is 000122H. But in the hex file, the content in the first two bytes are as these:FA 00 22 01 I don't know why there is a "FA 00" in the low byte . Can you help me ? Thanks a lot .
Looks good to me. FA 00 22 01 0xFA is the opcode for the JMPS instruction. 0x00 is the segment. 0x22 0x01 is the address (LSB first). This should jump to address 0x000122. -Walt
oh,Walt,Thanks a lot.