Create an HLA Assembly language program that prompts for a s…
Create an HLA Assembly language program that prompts for a single integer value from the user and prints an vvvv pattern like the one shown below. If the number is negative, don’t print anything at all. Here are some example program dialogues to guide your efforts:Feed Me: 33 3 3 3 33 Feed Me: -6Feed Me: 55 5 5 5 5 5 5 5 55 In an effort to help you focus on building an Assembly program, I’d like to offer you the following C statements matches the program specifications stated above. If you like, use them as the basis for building your Assembly program.SAMPLE C CODE:———————— int n;int i, j;scanf( “%d”, &n ); // V pattern for( i = 1; i
Read Details