Whats an assembler directive Whats the difference between th
What\'s an assembler directive? What\'s the difference between that and a MIPS instruction line in assembly language?
Solution
Assembler Directives are instructions that Direct the assembler to do some Task.
Eample for Assempler Directive:
MIPS instruction line are used to perform the task to Processor.
| Include \'C:\\PICTOOLS\\16C877.inc\' | ; loads default symbols |
| ; for the targeted device. | |
| FUSES _WD_OFF&_LP_OSC | ; specify multiple fuse settings |
| ; using the \'&\' operator. | |
| FUSES _CP_ON | ; Specifies 1 fuse setting per line. |
| Digit = 43h | ; Assign value 43h to Digit |
| Max EQU 1Ah | ; Assign value 1Ah to Max |
| ORG 10h | ; Set assembly address to 10h |
| Count DS 2 | ; Define 2 bytes at 10h & 11h |
