please write code in visual studio C++
Write an assembly program to find the smallest element by searching an array int aryl-(23,12,3, -4,-10, 35, 11, 8, 18) int index 0 int min = ary[0]; int arraySize- sizeof array / sizeof min while (index< arraySize) if (ary[index] < min) min – ary[index]; Use cmp instruction and the appropriate jump instruction (signed or unsigned) to translate the if and while statements Use S operator (see chapter 3) to
OR
OR