Browse M
Alphabetical listing with fast deep pagination.
30746 items • Page 53 / 615
MIPS ASSIGNMENT .data Key: .word 0x1234ABCD Messagetext: .asciiz \"This string w
MIPS ASSIGNMENT .data Key: .word 0x1234ABCD Messagetext: .asciiz "This string will be encrypted." Output1: .asciiz "Original message text: " Output2: .asciiz " Encrypted text (hex…
MIPS Adressing Problem (simple) The MIPS architecture doesn\'t support the addre
MIPS Adressing Problem (simple) The MIPS architecture doesn't support the addressing modes below. Synthesize these instructions by writing a few MIPS lines that do the same functi…
MIPS Assembly (.asm) Number Converter: Write a MARS program that can perform con
MIPS Assembly (.asm) Number Converter: Write a MARS program that can perform conversions between binary, decimal, and hexadecimal representations for positive integers (under 32 b…
MIPS Assembly (.asm) Number Converter: Write a MARS program that can perform con
MIPS Assembly (.asm) Number Converter: Write a MARS program that can perform conversions between binary, decimal, and hexadecimal representations for positive integers (under 32 b…
MIPS Assembly (.asm) Write a recursive MARS program that can compute the value o
MIPS Assembly (.asm) Write a recursive MARS program that can compute the value of an expression in parentheses. The program should accept an input string, sequentially examine eac…
MIPS Assembly (.asm) Write a recursive MARS program that can compute the value o
MIPS Assembly (.asm) Write a recursive MARS program that can compute the value of an expression in parentheses. The program should accept an input string, sequentially examine eac…
MIPS Assembly Code Write a function add64 that adds two input unsigned 64 bit in
MIPS Assembly Code Write a function add64 that adds two input unsigned 64 bit integers x and y and returns the unsigned 64 bit integer sum z, i.e. z = x + y. In your main function…
MIPS Assembly Language Programming Exercise: Various infinite series for pi have
MIPS Assembly Language Programming Exercise: Various infinite series for pi have been discovered. The first such series found was the Gregory-Leibniz series: pi = 4(1 - 1/3 + 1/5 …
MIPS Assembly Language Programming Exercise: Various infinite series for pi have
MIPS Assembly Language Programming Exercise: Various infinite series for pi have been discovered. The first such series found was the Gregory-Leibniz series: pi = 4(1 - 1/3 + 1/5 …
MIPS Assembly Language Programming Exercise: Various infinite series for pi have
MIPS Assembly Language Programming Exercise: Various infinite series for pi have been discovered. The first such series found was the Gregory-Leibniz series: pi = 4(1 - 1/3 + 1/5 …
MIPS Assembly Language Programming Exercise: Various infinite series for pi have
MIPS Assembly Language Programming Exercise: Various infinite series for pi have been discovered. The first such series found was the Gregory-Leibniz series: pi = 4(1 - 1/3 + 1/5 …
MIPS Assembly Language Programming Exercise: Write a program to evaluate 3ab - 2
MIPS Assembly Language Programming Exercise: Write a program to evaluate 3ab - 2bc - 5a + 20ac - 16 Prompt the user for the values for a, b, and c, all single-precision floating-p…
MIPS Assembly Language Programming Exercise: Write a recursive function using a
MIPS Assembly Language Programming Exercise: Write a recursive function using a stack frame to implement the Fibonacci function, with all parameters passed on the stack, not via r…
MIPS Assembly Language Programming Exercise: Write a recursive function using a
MIPS Assembly Language Programming Exercise: Write a recursive function using a stack frame to implement the Fibonacci function, with all parameters passed on the stack, not via r…
MIPS Assembly Language Programming Problem: For this exercise, you may not use s
MIPS Assembly Language Programming Problem: For this exercise, you may not use syscall for input or output, because the program would then block on the input. Instead, use an inte…
MIPS Assembly Language Programming problem: Prompt the user for a series of 10 i
MIPS Assembly Language Programming problem: Prompt the user for a series of 10 integers and hold them in an integer array. Then, after the entries are complete, pass through the a…
MIPS Assembly Language Programming: If Statements, Loops, Procedures 5. (24 pts)
MIPS Assembly Language Programming: If Statements, Loops, Procedures 5. (24 pts) Name your source code file h3-1.8 Let lower and upper be two positive integers with 1 s lower, upp…
MIPS Assembly Language Recursion Problems 1. Write a MIPS Assembly Language recu
MIPS Assembly Language Recursion Problems 1. Write a MIPS Assembly Language recursive function that computes the smallest integer in a given array of integers. Use the following a…
MIPS Assembly Language, C Write a MIPS assembly pseudo instruction \"push_multip
MIPS Assembly Language, C Write a MIPS assembly pseudo instruction "push_multiple". The instruction gets the name of 3 registers and pushes these registers to the stack in the sam…
MIPS Assembly Language. Please take your time to help out. Questions are little
MIPS Assembly Language. Please take your time to help out. Questions are little tricky. (Q1) Which kind of element is the ALU (Arithmetic Logic Unit)? Sequential, combinational, o…
MIPS Assembly Language. Please take your time to help out. Questions are little
MIPS Assembly Language. Please take your time to help out. Questions are little tricky. (Q1) Which kind of element is the ALU (Arithmetic Logic Unit)? Sequential, combinational, o…
MIPS Assembly Language: I need to ask the user to enter in two decimal numbers,
MIPS Assembly Language: I need to ask the user to enter in two decimal numbers, read in the integers, and store them into a 32-bit word in a memory location. Then add the numbers …
MIPS Assembly code You are tasked to calculate a specific algebraic expansion, i
MIPS Assembly code You are tasked to calculate a specific algebraic expansion, i.e. compute the value of f and g for the expression: f = (A^4-4B^3+3C^2-2D) g = (AB^2+C^2D^3) witho…
MIPS Assembly code for arithmetics. Do it in PCSPIM only for MIPS! Objectives: w
MIPS Assembly code for arithmetics. Do it in PCSPIM only for MIPS! Objectives: write assembly language programs to -perform arithmetic and logical operations on variables -use sys…
MIPS Assembly language Your task is to write the body of the threshold function
MIPS Assembly language Your task is to write the body of the threshold function that takes in an array of pixels of a grayscale image (one byte per pixel) along with its dimension…
MIPS Assembly language trying to make a paddle using a random x coordinate. Hell
MIPS Assembly language trying to make a paddle using a random x coordinate. Hello, I'm currently having trouble getting the value of a random int for my code. I guess I don't know…
MIPS Assembly programming. Not C or anything else Write a program that reads a s
MIPS Assembly programming. Not C or anything else Write a program that reads a string (from a keyboard), stores it in the memory, and computes and prints the frequency of each upp…
MIPS Assembly: For these programming exercises, use only those instructions that
MIPS Assembly: For these programming exercises, use only those instructions that have been discussed so far in these notes: Start out a program with the instruction that puts a si…
MIPS Assembly: For these programming exercises, use only those instructions that
MIPS Assembly: For these programming exercises, use only those instructions that have been discussed so far in these notes: Put the bit pattern 0x55555555 in register $1. (Do this…
MIPS Assembly: For these programming exercises, use only those instructions that
MIPS Assembly: For these programming exercises, use only those instructions that have been discussed so far in these notes: Put the bit pattern 0x0000FACE into register $1. This i…
MIPS Assignment - Matrix Multiply Part 1: Write a program that inputs a 4x4 matr
MIPS Assignment - Matrix Multiply Part 1: Write a program that inputs a 4x4 matrix of single-digit integers one row at a time (one row per input line – not one number per line!) a…
MIPS Assignment In this assignment I am to encrypt and decrypt a message using s
MIPS Assignment In this assignment I am to encrypt and decrypt a message using symmetric encryption. There are three methods left for me to write: Hash method, encrypt method, and…
MIPS Assignment Write code to encrypt and decrypt a message using symmetric encr
MIPS Assignment Write code to encrypt and decrypt a message using symmetric encryption. There are three methods you’ll need to write for this assignment. The first is a hash metho…
MIPS Computer Architecture Question Requirments to Answer: Solid Foundation of M
MIPS Computer Architecture Question Requirments to Answer: Solid Foundation of MIPS Programming / Hexidecimal formatting / Byte Ordering Asking: Good Explanation and Solution 1. (…
MIPS Data Path Code analysis Rewrite the code using a minimum number of nop inst
MIPS Data Path Code analysis Rewrite the code using a minimum number of nop instructions to eliminate hazards. You can reorder the instructions assuming that register read and wri…
MIPS Inst/Cyclel 1 2 ID 6 4 MEM WB EX ID 5 EX ID IF IF MEM WB EX pipeline suppor
MIPS Inst/Cyclel 1 2 ID 6 4 MEM WB EX ID 5 EX ID IF IF MEM WB EX pipeline support MEM |WB Table 3 Instruction Execution with There are, though, situations in the pipelining when t…
MIPS MIPS MIPS PLEASE INCLUDE COMMENTS AND OUTPUT Sort array using Bubble sort a
MIPS MIPS MIPS PLEASE INCLUDE COMMENTS AND OUTPUT Sort array using Bubble sort algorithm. 1) First ask the user how many elements of his/her array. 2) Then, read the integer array…
MIPS PROGRAM. ATTATION: The mult,multu,div and divu instruction cannot be used i
MIPS PROGRAM. ATTATION: The mult,multu,div and divu instruction cannot be used in any of your programs. Multiplication and division must be implemented by code that you write. you…
MIPS Problem Problem Description: Write and test the fib function in two linked
MIPS Problem Problem Description: Write and test the fib function in two linked files. Your solution must be made up of a function called fib(N, &array) to store the first N e…
MIPS Project 2- Find password in MEMORY! In this project, you will have to searc
MIPS Project 2- Find password in MEMORY! In this project, you will have to search for 6 consecutive digits as password in the "memory". Note that the password should exactly have …
MIPS Project 6: Infix Expression Evaluation Linklist Assigned on: November 19 Du
MIPS Project 6: Infix Expression Evaluation Linklist Assigned on: November 19 Due on: November 30th, end of the day 11:59pm NO LATE PENALTY ACCEPTED: am giving everybody as much t…
MIPS Question .text .globl __start __start: # execution starts here la $a0, msg1
MIPS Question .text .globl __start __start: # execution starts here la $a0, msg1 # load address of msg1 into register li $v0, 4 …
MIPS Registers R8 (t0) R16 (s0) R24 (t8) R17 (s1 R25 (t9) R26 (k0) R11 (t3) R19
MIPS Registers R8 (t0) R16 (s0) R24 (t8) R17 (s1 R25 (t9) R26 (k0) R11 (t3) R19 (s3) R27 (k1) R20 (s4) R28 (gp) 0x00000000 0x0f0f0f0f 0x00000000 0x00000000 Rl (at): 0x10010000 0x0…
MIPS SORTING AND DISPLAYING ARRAY I have a mips menu program that ask: 1.) Inser
MIPS SORTING AND DISPLAYING ARRAY I have a mips menu program that ask: 1.) Insert numbers into array (at most 20) 2.) Sort the array 3.) Print the sorted array 4.) Print the unsor…
MIPS Write a MIPS program that reads two integers from the keyboard sum them up
MIPS Write a MIPS program that reads two integers from the keyboard sum them up and print the sum. The first operand must be in register $t0, the second operand must be in registe…
MIPS Write a program which uses two different methods to reverse a string. The r
MIPS Write a program which uses two different methods to reverse a string. The results of both methods should compare, showing that the implementation is correct. The StackReverse…
MIPS assembler language How do represent the following code MIPS instruction Iam
MIPS assembler language How do represent the following code MIPS instruction Iam trying to create a method that takes in a double and returns the sin of that double but I am havin…
MIPS assembly (60pts 3. Implement a Vector-Matrix multiply code in MIPS assembly
MIPS assembly (60pts 3. Implement a Vector-Matrix multiply code in MIPS assembly. The skeleton code is provided. The input data are also embedded to the skeleton code (do not modi…
MIPS assembly code The read int system call (number 5) will cause the running pr
MIPS assembly code The read int system call (number 5) will cause the running program to stop and wait for the user to type in an integer at the keyboard. The integer will be put …
MIPS assembly code for adding (addition of) and subtracting (subtraction of) two
MIPS assembly code for adding (addition of) and subtracting (subtraction of) two signed numbers (positive and negative numbers) . Need code for both methods. Using registers and h…