Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

TRUE FALSE (11) Emulated instructions are not actual commands, but rather onljy

ID: 2291827 • Letter: T

Question

TRUE FALSE (11) Emulated instructions are not actual commands, but rather onljy comments that help the coder "read" his/her code. (12) The assembly add.v #10,R7 adds the number 10 to the contents of Register 7 (13) The assembly main: add.w 0x1234, R7 xor.b #0x10, R8 takes 4 CPU cycles to complete. (14) The following command MOV 0x0053,R5 is a legal operation (15) The MSP430 has a clock divider that divides by powers-of-two, i.e. 2, 4, and 8, and another separate clock divider that can divide by integer values 1-9 (16) When internal interrupts are used in a real-time system, the in- terrupt service routine must include the code to produce the next (17) (18) (19) output value A data clock must be at a lower frequency than the CPU clock. Code composer can be used to "look" into the memory on the MSP430 board and "see" their contents. The duty cycle of a PWM waveform is set using a counter (20) C code cannot be used to determine the number of CPU cycles consumed as the code runs.

Explanation / Answer

Answer :- The answers has been written below-

11) FALSE, emulated instructions are used for higher code efficiency and faster execution.

12) TRUE, R7 = R7 + 10.

13) FALS, it will take 8 CPU cycles.

14) TRUE, the instruction is legal..

15) TRUE.