using ARMv7 assembly language in the VisUAL emulator. ( Not Program C)

Job ID: 35119754

Budget: $10 – $30 USD

The input will be the following variable in your program:

L3Array DCD 22,9,333,47,72,128,111,44,-999
The actual number of array entries and their values will be different when your program is graded. The last number will still be -999.



The output of your program will be the counts and totals placed in the following variables:

L3OddCt DCD 0 ; count of odd numbers
L3OddTot DCD 0 ; total of odd numbers
L3EvCt DCD 0 ; count of even numbers
L3EvTot DCD 0 ; total of even numbers


Your program must use the variable names L3Array, L3OddCt, L3OddTot, L3EvCt, and L3EvTot.

The expected results for the array contents shown above are:

L3OddCt = 4
L3OddTot = 500
L3EvCt = 4
L3EvTot = 266