Start Discovering Solved Questions and Your Course Assignments
TextBooks Included
Active Tutors
Asked Questions
Answered Questions
Write an assembly language program(8086)MASM that asks the user to enter an integer test score between 0 to 100. The program should display the appropriate letter grade:
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 th
Write an Assembly program to determine the correct admission price to a movie. The price of admission to a movie is $7 for kids (under 12) and $9 for adults. Display the correct admission fee after th
Write an assembly language program that prompts the user for two input strings and computes the Hamming distance between the two strings. The Hamming distance is the number of bit positions where the
Assembly language a program that prompts the user to enter a string, in capital letters, of a maximum length of 20 characters. Read the string in capital letters and convert it to small letters. Then
Write an Assembly program that reads in a number of cents. The program will write out the number of dollars and cents separately.
Translate the following C code into MIPS assembly.Use a minimum number of MIPS assembly instructions.
Write an assembly language program that will
In mini ISA assembly language what is the Z register used for. If Z==1 then it indicates that something is zero. But what is that something?
Write an Assembly program to determine the cost for a group to attend a movie. Tickets are $6 for children and $8 for adults. Read in the number of children and the number of adults, and display the t
Programs on assembly language on how to add, subtract and move both data and strings to a memory location using a stack segment for example and a stack register by the methods of memory models and ful
Write an Intel 8085 assembly language program that counts the number of 1s in a binary number stored in the accumulator. Use the algorithm below. Hand assemble (produce hexadecimal code using code tab
Translate the following set of instructions into valid IA-32 assembly language:
List the assembly language program (of the equivalent binary instructions), generated by a compiler from the following pseudo-code program. Assume all variables are integer.
Write an assembly program with the necessary comments that is able to perform the Boolean operations with logic operands: Y = (A and B) or (C and D)
Write a program in assembly with the necessary comments that computes division of two integer numbers (Y by X) by consecutively subtracting X from Y, and producing a final quotient and a reminder.
Implement this function in assembly language and write a test program That calls the function several times, passing it different values. Display all results on the screen and include screen shots of
Write an assembly program that should prompt the user to enter a signed 32-bit integer. The program should print out the binary representation of the integer. I am using the Irvine textbook and the Ir
Write an Assembly program to determine the price of a car rental. The car being rented costs $45 per day and frequent renters get a $15 discount on the total bill. Get as input, the number of days ren
Translate the following C++ program to Pep/8 assembly language:
Write a procedure named PackedToAsc that converts a 4-byte packed decimal number to a string of ASCII decimal digits. Pass the packed number to the procedure in EAX, and pass a pointer to a buffer tha
-Implement a MIPS assembly language program that defines "main", and "fib" procedures
Write an ARM assembly function that takes an array of integers and finds the largest integer in the array. The array search is terminated when a negative integer is found.