Sale!

COEN 20 Programming Lab 3 Copying Data Quickly solved

Original price was: $35.00.Current price is: $30.00. $25.50

Category:

Description

5/5 - (5 votes)

Copying Data Quickly

Create five functions in ARM Cortex-M4 assembly all contained in a single source code file. Each
function copies 512 bytes of data from one array to another.
Each function should use the .REPT and .ENDR directives shown in Listing 4-1 to copy the data without
a loop using a straight-line sequence of instructions. The main program (download here) will display the
relative execution time of the three functions.
void UseLDRB(void *dst, void *src)
Copy 1 byte at a time using LDRB and STRB, and optimize the execution time by updating the
address using the Post-Indexed addressing mode shown in Table 4-6.
void UseLDRH(void *dst, void *src)
Copy 2 bytes at a time using LDRH and STRH, and optimize the execution time by updating the
address using the Post-Indexed addressing mode shown in Table 4-6.
void UseLDR(void *dst, void *src)
Copy 4 bytes at a time using LDR and STR, and optimize the execution time by updating the
address using the Post-Indexed addressing mode shown in Table 4-6.
void UseLDRD(void *dst, void *src)
Copy 8 bytes at a time using LDRD and STRD, and
optimize the execution time by updating the address
using the Post-Indexed addressing mode shown in
Table 4-6.
void UseLDMIA(void *dst, void *src)
Copy 32 bytes at a time using LDMIA and STMIA,
and optimize the execution time by updating the
address using the write-back flag (!) shown in Table
4-7.
If your code is correct, the display should look similar to the
image at right with each function’s execution time shown in
clock cycles at the top of each bar graph. (Your numbers may
differ.) The bar graph of an incorrect copy will be displayed in
red.