Homework # 4 Due Monday, September 27 prior to the start of class E2.20 Draw a flowchart, write the program, simulate and test your program using Sim68. Note that Tuesday's (9/28) lab involves this exact same program (and flowchart). DO NOT use ADCA in Sim68, it has a "sticky" Carry flag and will cause you grief. You will probably get another assignment for the second half of the week, and it may not be easy to ask for help on this over the weekend, so you should start this one ASAP. HAND IN By 8:00 Monday Morning, email me your well-documented source code ( .asm file) and the Sim68 output (.sav file). Hand in (hardcopy) your .lst file. Although you should test many different scenarios, the files you hand in should multiply the even parity ASCII representation of the first three letters of your first name by the even parity ASCII representation of the first three letters of your last name. For example, the first few lines of my program would be: ORG $0000 M FCB $42,$6F,$E2 N FCB $C6,$6F,$F5 Since the 7-bit ASCII representation of Upper case B, lower case o, lower case b is 42, 6F, and 62. Using the MSB as a parity bit, and even parity this becomes $42, $6F, $E2. Similarly with Fou->46,6F,75 in 7-bit ascii and C6,6F,F5 with the (even) parity bit. Additionally, name the files you email with the first 6 characters of your last name (so, I would email fourne.asm and fourne.sav)