Write an assembly program called hw6_ex1, stored in file hw6_ex1.asm. This program should prompt the user to enter a signed 32-bit integer. The program should print out the binary representation of the integer.
Here is an example interaction with the program:
% ./hw6_ex1
Enter an integer: 324
The binary representation is: 00000000000000000000000101000100
% ./hw6_ex1
Enter an integer: -13523
The binary representation is: 11111111111111111100101100101101
You can assume that the user always enters a number (and not random input).