ECE 271 Homework 6 Create a flowchart and code for a program that will compute a checksum of a sequence of bytes in memory. First write the flowchart, and then write the code from it. You can assume that the following assembler directives are used to set up your data area. SEQUENCE FCB $12, $87, $A3, $EC, $1F, $66, $D3 SEQEND DATASTART FDB SEQUENCE ; Pointer to the start of the data DATAEND FDB SEQEND ; Pointer to one byte past end of data RESULT RMB 1 ; Checksum placed here after it is computed