Problem: Assembly Language
Consider an 80x86 code that determines how many numbers in an array are negative. You must write the assembly code that in the data section defines an array of byte size and initialize it with 5 numbers. Use shift instruction to check the last bit of each of the numbers (i.e. the sign bit). If the last bit is a 1, it means the number is negative. Count the negative numbers that this array contains.