Hi. I'm trying to ensure my complied code is optimal but the disassembly seems only part complete. Is there anyway to reveal the true compiled code or otherwise find the missing instructions?
eg. this asm
Seems to be missing any IOR instructions in the disassembly
eg. this asm
Code:
// turn on H bits
PORTA|= HA;
PORTC|= HC;
Code:
356: // turn on H bits
357: PORTA|= HA;
1030 504C MOVF HA, W, ACCESS
358: PORTC|= HC;
1034 504D MOVF HC, W, ACCESS