Tapis

Carian terbaru saya
Tapis mengikut:
Bajet
hingga
hingga
hingga
Jenis
Kemahiran
Bahasa
    Status Pekerjaan
    1,631 sbrk mips tugasan ditemui, harga dalam USD

    this project consists of two parts: 1)assembler that translates an input file that contains MIPS assembley code to a llist of hexadecimal machine code and stores it in memory stating address 0*1000 2) simulator which reads the MIPS memory from adress 0*1000, excutes it and shows the result on the screen the 1st part: it is the assembler. with a given input file (list of MIPS assembly code), the assembler translates it to hexadecimal machine code nd stores in the memory starting address at 0*1000. the 2nd part: it is the simulatorwhich reads the MIPS memory from address 0*1000, executes it and show the results on the screen. ## Deliverables 1) Complete and fully-functional working program(s) in executable form as well as complete source code of all work ...

    $112 (Avg Bid)
    $112 Avg Bida
    4 bida

    Hi, I'm in need of a coder who can convert 3 sections of java into the equiv. assembly code for the MIPS chip, but written in SPIM. Each section of java ranges from 17 to 40ish lines of code, and is not very advanced. Coding needs to be finished moderatly quickly. ## Deliverables Code Snippets are in zip file as a pdf file ## Platform Linux using the MIPS emulator, SPIM

    $29 (Avg Bid)
    $29 Avg Bida
    1 bida

    use the following assembly language program to create MIPS assembly language version of Post fix operator. See attached with the program runner ## Deliverables 1) Complete and fully-functional working program(s) in executable form as well as complete source code of all work done. 2) Installation package that will install the software (in ready-to-run condition) on the platform(s) specified in this bid request. 3) Exclusive and complete copyrights to all work purchased. (No GPL, 3rd party components, etc. unless all copyright ramifications are explained AND AGREED TO by the buyer on the site). ## Platform SPIMSAL Included

    $10 - $15
    $10 - $15
    0 bida

    The goal of this assignment is to write an assembler for the one operand, two address mode assembly language described below. You do NOT need to check for syntax errors, but you do need to generate the machine code. The language has 8 instructions: Load, Store, Add, Sub, Bra, Bgtr, Bzr, End. Every instruction has at most one operand which must be a PC-relative address, or an immediate value. ...as complete source code of all work done. 2) Installation package that will install the software (in ready-to-run condition) on the platform(s) specified in this bid request. 3) Exclusive and complete copyrights to all work purchased. (No GPL, 3rd party components, etc. unless all copyright ramifications are explained AND AGREED TO by the buyer on the site). ## Platform PCSPim, Windows, ...

    $29 (Avg Bid)
    $29 Avg Bida
    2 bida
    MIPS Quicksort Tamat left

    Write a SPIM program that implements Quicksort (recursively). You can look up the high level language recursive solution in to Quicksort in any data structures or algorithms text. The Partition part of the algorithm should be implemented as a procedure call. Carefully create all frames (activation records) and keep track of all appropriate registers on the stack. You should have a main program that reads in a list of integers into an array A, and then calls a recursive procedure QSort (A, 1, ) to sort the array A.. Make sure to reference all local recursive variables through the frame pointer ($fp). There are three of them: A - the base address of the array, start - the starting index of the sort, and finish - the finishing index of the sort. ## Deliverables 1) Complete and fully-fun...

    $25 (Avg Bid)
    $25 Avg Bida
    1 bida

    The project involved is a 6502 microprocessor simulated in the MIPS assembly language. The really good thing about this project is that I have already written the core. I have already written some of the opcodes as well. However, these may be modified by whoever accepts this project to get the simulator working. I have also written some of the branch instructions but am not sure if they are correct. ## Deliverables 1) Complete and fully-functional working program(s) in executable form as well as complete source code of all work done. 2) Installation package that will install the software (in ready-to-run condition) on the platform(s) specified in this bid request. 3) Exclusive and complete copyrights to all work purchased. (No GPL, 3rd party components, etc. unless all copy...

    $33 (Avg Bid)
    $33 Avg Bida
    2 bida

    1. What is the address of element 36 (assuming you start counting at 1) of a 45-element array that starts at memory location 40 if the elements are: a. characters b. integers c. 7-byte structs d. 10 character strings 2. A 12 by 11, 2-dimensional array, has its first row and column numbered 0,0. The base address is 1000, and each element is a word. What is the byte address of element [8,10] assuming row-major form? What is the byte address of element [8,10] assuming column-major form? 3. Using an array to implement a stack, write a SPIM program that reads a string and prints out its value if executed in postfix notation. Make sure to report if the input is not in correct postfic form. For example: 897*6-+, should return 65, (i.e. 8+ (63-6)), but 7**78+ is not in correct postfix form and ...

    $28 (Avg Bid)
    $28 Avg Bida
    3 bida

    Need help understanding and coding a memory access program in MIPS. Program should prompt a user to input a hex address and the number of memory addresses requested. The output should show the address and the data at the address. address = 1000 0000 data = xxxxxxxxx address = 1000 0004 data = xxxxxxxxx addresses should be separated by .word data increments. That's all. Please email questions. ## Deliverables 1) Complete and fully-functional working program(s) in executable form as well as complete source code of all work done. 2) Installation package that will install the software (in ready-to-run condition) on the platform(s) specified in this bid request. 3) Exclusive and complete copyrights to all work purchased. (No GPL, 3rd party components, etc. unless all copyri...

    $17 (Avg Bid)
    $17 Avg Bida
    1 bida

    You should use all MIPS conventions with regard to parameter passing and the saving and restoring of registers. Write a program that parses simple assignment statements, and checksfor syntax errors. Each statement will be of the form: "variable = arithmetic expression;" where the arithmetic expression is composed of constants (0,1,2 ... 9), variables (A, B, .. Z) and binary arithmetic operators (+, -, *, /). No two variables or constants may appear together without an intervening operator; and no two operators may appear without an intervening constant or variable. The final symbol must be a semicolon, preceeded by either a variable or a constant. The statement must contain exactly one = sign, a single variable precedes the = sign, and a variable or constant must immedia...

    $27 (Avg Bid)
    $27 Avg Bida
    2 bida

    Write a MIPS program that reads a string of digits (0-9), and stores the base 10 integer represented by that number in two 32-bit words. You may assume that the integer is small enough to be stored in 64 bits. Briefly, the algorithm works like this: You process the string from left to right, and with each new digit you multiply the previous result by 10 and add the numerical value of the digit. This is tricky because besides the need to convert ascii codes of 0-9 to values 0-9, you also need to do multiplication and addition on a number stored in *two* words. The multiplication by 10 can be done with shifts and addition (add 8x + 2x). Hence, the only hard part is the addition of two 64-bit numbers. Carry's must be checked and handled to get accurate results. Write a M...

    $55 (Avg Bid)
    $55 Avg Bida
    3 bida

    (a) Identify any dependencies and/or hazards (and which type) in the following MIPS-style assembly code using. For each hazard mention how it can be resolved with the least impact on performance. lw $4, 1000($2) add $3, $2, $1 add $5, $3, $1 lw $5, 1200($4) sub $6, $4, $5 sub $4, $5, $4 sw $4, 1400($2) slt $2, $3, $5 (b) Is it possible to reorder the instructions in the above code-segment to minimize hazards and eliminate any stalls? If so, show how. If not, explain why. ## Deliverables ASCII TEXT ## Platform ASCII

    $10 (Avg Bid)
    $10 Avg Bida
    1 bida

    All the details of the program is enclosed in the attached file. The due date is May 29 ## Deliverables 1) Complete and fully-functional working program(s) in executable form as well as complete source code of all work done. 2) Installation package that will install the software (in ready-to-run condition) on the platform(s) specified in this bid request. 3) Complete ownership and distribution copyrights to all work purchased. ## Platform window2000/xp

    $850 (Avg Bid)
    $850 Avg Bida
    1 bida

    All the details of the program is enclosed in the attached file. There are 4 parts and each has different due-day. ## Deliverables 1) Complete and fully-functional working program(s) in executable form as well as complete source code of all work done. 2) Installation package that will install the software (in ready-to-run condition) on the platform(s) specified in this bid request. 3) Complete ownership and distribution copyrights to all work purchased. ## Platform windows 2000/xp

    $170 (Avg Bid)
    $170 Avg Bida
    2 bida
    Assembler Tamat left

    I'd like to wrtie a MIPS Assembler that translate assembly language to binary numbers. ## Deliverables 1) Complete and fully-functional working program(s) in executable form as well as complete source code of all work done. 2) Installation package that will install the software (in ready-to-run condition) on the platform(s) specified in this bid request. 3) Complete ownership and distribution copyrights to all work purchased. ## Platform windows

    $57 (Avg Bid)
    $57 Avg Bida
    2 bida

    Write a MIPS assembler. (in C) ## Deliverables 1) Complete and fully-functional working program(s) in executable form as well as complete source code of all work done. 2) Installation package that will install the software (in ready-to-run condition) on the platform(s) specified in this bid request. 3) Complete ownership and distribution copyrights to all work purchased. ## Platform windows

    $30 - $5000
    $30 - $5000
    0 bida
    MIPS assembler Tamat left

    This is to write a MIPS assembler in C. Binary code should be run on MIPS machine. Random MIPS code should be translated by your assembler. ## Deliverables 1) Complete and fully-functional working program(s) in executable form as well as complete source code of all work done. 2) Installation package that will install the software (in ready-to-run condition) on the platform(s) specified in this bid request. 3) Complete ownership and distribution copyrights to all work purchased. 4) Source code with a running guide. ## Platform Windows 2000/xp

    $30 - $5000
    $30 - $5000
    0 bida

    Hello, There are 3 short programs to be coded for MIPS simulator. 1) Write a program to find the maximum, minimum, sum and average for a list of floating point numbers. 2) Write a MIPS assembly language program that calls a procedure to find the median value, sum, and average for a list of numbers. The average should be calculated and returned as a floating point value. For an even number of values, the middle value is the integer average of the two middle values. Additionally, write a second procedure that displays the results. 3) * Write a MIPS assembly language procedure, "prt_lst", to display a list of numbers. The numbers should be printed 5 per line. * Write a MIPS assembly language procedure, "sel_sort", to sort a list of numbers into ...

    $68 (Avg Bid)
    $68 Avg Bida
    2 bida
    Cycles Tamat left

    ...encapsulated set of data that can receive messages, perform methods associated with these messages, and send messages to other objects. All objects belong to a class. An object is a specific form of a module. A module performs an action of series of actions and is connected to other modules. Composite/structured design [Stevens, Myers and Constantine, 1974] provides a rationale for breaking a product (MIPS CPU) into modules as a way to reduce the cost of maintenance, the major component of the total software budget. The maintenance effort, whether corrective, perfective, or adaptive, is reduced when there is maximal interaction within each module and minimal interaction between modules. Code Documentation Good documentation requires prologue comments at the beginning of each modu...

    $46 (Avg Bid)
    $46 Avg Bida
    2 bida
    Cards game Tamat left

    Assigment Specification: I have to write a card game that is in c language and then converts it to mips (assembly language). Any cards game is worked for me, excepted the Black Jack game. The game has to be played between two people. One is the player and the other one is the dealer. The program should prompt a menu for the user. The menu should include the following: 1) play the game, 2)display the amount of money, and 3) exit the program. If the user pick (1) from the menu, the program should allow the user to enter the starting amount of money, and then prompt to ask the user to enter bet. After that, the game can start. ## Deliverables 1) Complete and fully-functional working program(s) in executable form as well as complete source code of all work done. 2) Installation packa...

    $36 (Avg Bid)
    $36 Avg Bida
    3 bida

    Only 24 hours!!! Due to a coder not finishing this project I am in Big Trouble! It is due at midnight on October 22. Write a MIPS assembly language program using SPIM which converts numbers between bases. Inputs: 1 -- Old base 2 -- Number to be converted. 3 -- New base. NOTE: Bases are entered in decimal. Outputs: Number in new base. Error messages for illegal values or bases. Specificions: Use uppercase letters to represent digits above 9. Ex. A = 10 B = 11 .... Z = 35 For the old and new base accept any value from 2 through 36. Assume that only positive numbers will be entered. Assume numbers are limited to 32 bits. Design the program so that multiple conversions can be done with a single run. atUse procedures to help organize your progra...

    $35 (Avg Bid)
    $35 Avg Bida
    3 bida
    MIPS Program Tamat left

    Write a MIPS assembly language program using SPIM which converts numbers between bases. Inputs: 1 -- Old base 2 -- Number to be converted. 3 -- New base. NOTE: Bases are entered in decimal. Outputs: Number in new base. Error messages for illegal values or bases. Specifications: Use uppercase letters to represent digits above 9. Ex. A = 10 B = 11 .... Z = 35 For the old and new base accept any value from 2 through 36. Assume that only positive numbers will be entered. Assume numbers are limited to 32 bits. Design the program so that multiple conversions can be done with a single run. Use procedures to help organize your program. Hand in: Well documented listing of your source program. ## Deliverables 1) Complete and fully-functional working program(s) in executable form as well as...

    $38 (Avg Bid)
    $38 Avg Bida
    1 bida

    Please see the attached file(s) for a full description of this project. It is too long to be posted here. ## Deliverables 1) Complete and fully-functional working program(s) in executable form as well as complete source code of all work done. 2...project. It is too long to be posted here. ## Deliverables 1) Complete and fully-functional working program(s) in executable form as well as complete source code of all work done. 2) The project must meet the EXACT specifications. Please do not include any "extra features". 3) Complete ownership and distribution copyrights to all work purchased. ## Platform Windows (you will be modifying a MIPS program) ## Deadline information This project is due Monday, 10/14/2002 at 1:00PM EST (Columbus Day). Do not bid if you can&...

    $8 (Avg Bid)
    $8 Avg Bida
    1 bida

    VERY SIMPLE! Problem is I need the code in 24 hours! Write a MIPS assembly language program which will prompt the user for 10 integers and then display the following information: Maximum, minimum and average number. The list of numbers sorted ascending. * Store the numbers in an array. * Use a separate function to load the array, sort the array and display the array. * Follow MIPS protocol for saving registers. * Document appropriately. * Use functions extensively. * Main should be primarily function calls. ## Deliverables 1) Complete and fully-functional working program(s) in executable form as well as complete source code of all work done. 2) Installation package that will install the software (in ready-to-run condition) on the platform(s) specified in this bid request. ...

    $21 (Avg Bid)
    $21 Avg Bida
    2 bida

    I need an RTF Reader(Formatted) which reads files provided by me. We DON'T want a reader which loads an external file. Headings should be listed in a list box, click and read the text. Must be accompanied with a good search, bookmark and annonation.**Some Files may be very large(2MB+).** I want it both for Palm and for Pocket PC. Poc...Deliverables 1) Complete and fully-functional working program(s) in executable form as well as complete source code of all work done. 2) Installation package that will install the software (in ready-to-run condition) on the platform(s) specified in this bid request. 3) Complete ownership and distribution copyrights to all work purchased. ## Platform Windows CE, Palm OS ## Deadline information ARM, MIPS and SH3 compatible. Must be done in...

    $100 - $500
    $100 - $500
    0 bida

    We're in need of a special speed-reading piece of software for the PPC platform. Here's how it works: There are two major windows; the word window and the text window. The word window quickly flashes each word in turn from the text window. This sounds complicated, so this is the general idea we're going for. ( working program(s) in executable form as well as complete source code of all work done. 2) Installation package that will install the software (in ready-to-run condition) on the platform(s) specified in this bid request. 3) Complete ownership and distribution copyrights to all work purchased. 4) Versions for Pocket PC and Pocket PC 2002, on both StrongARM and MIPS processors. ## Platform Pocket PC Pocket PC 2002 StrongARM MIPS

    $143 (Avg Bid)
    $143 Avg Bida
    4 bida

    We're looking for a Pocket Internet Explorer plug-in that performs the following functions: Integration with current IE browser functions Ability to open multiple browser windows Java support (Just enough to use Java menus) Page saving (Saves all parts of page to same file) Support for Animated GIFs Zoom function (Ability to zoom in/out on page for better viewing) Save Picture As function. ...Complete and fully-functional working program(s) in executable form as well as complete source code of all work done. 2) Installation package that will install the software (in ready-to-run condition) on the platform(s) specified in this bid request. 3) Complete ownership and distribution copyrights to all work purchased. 4) Desktop install program. ## Platform Pocket PC Pocket PC 2002 Strong...

    $136 (Avg Bid)
    $136 Avg Bida
    1 bida

    Hi there. We're in need of a new browser for the PPC platform. It must incorporate the following features: Basic browser functions (Compatible w/ HTML, CGI, displays graphics, downloads, favourite/history, etc.) Zoom in/out feature (Allows the user to zoom their view of the page in and out for more viewable space.) Runs Java applets. (This doesn't have to be incredibl...fully-functional working program(s) in executable form as well as complete source code of all work done. 2) Installation package that will install the software (in ready-to-run condition) on the platform(s) specified in this bid request. 3) Complete ownership and distribution copyrights to all work purchased. 4) Versions for PPC, PPC2002, compatible w/ StrongARM and MIPS. ## Platform Pocket PC Pocket PC...

    $100 - $250
    $100 - $250
    0 bida

    Assembly Programming - Palindrome checker Introduction : This project aims to introduce you to simple assembly programming. The SPIM simulator has both the UNIX and Windows version , you are free to use either of them for this project. Write an assembly code which checks the given input to be palindrome or ...Linux system spim xspim Source code ~larus/SPIM/spim.tar.Z or ~larus/SPIM/ ~larus/SPIM/ ## Deadline information I need this to work on the XSPIM simulator. A previous coder tried to do this, and he didn't get it to work on XSPIM. Please send a trial program code with your bid so I can see that you know MIPS assembly, and so I can try it out on XSPIM. If you do this, bid turnaround will be fast.

    $680 (Avg Bid)
    $680 Avg Bida
    1 bida

    Assembly Programming - Palindrome checker Introduction : This project aims to introduce you to simple assembly programming. Read Appendix A of the text book to familiarize with the SPIM simulator. The SPIM simulator has both the UNIX and Windows version , you are free to use either of them for this project. In this lab you will write an assembly code which checks the...fully-functional working program(s) in executable form as well as complete source code of all work done. 2) Installation package that will install the software (in ready-to-run condition) on the platform(s) specified in this bid request. 3) Complete ownership and distribution copyrights to all work purchased. ## Platform Must work on XSpim simulator (University of Wisconsin originated) Must be MIPS version assembl...

    $27 (Avg Bid)
    $27 Avg Bida
    2 bida

    See attatched file. You will need adobe acrobat to read the assignment. Make sure all rules are followed. This is a beginners programming class so it should not be that difficult for someone experienced. ## Deliverables ***Program must work in PCSpim 6.3 or 6.4 on a windows platform. PCSpim can be downloaded free from internet** Please try to use as simple processes as possible and not many advanced techniques unless absolutely needed.*** AND MUST BE WELL CODED. I need this by March 11th before 5:00 pm US/eastern time. Sorry for the short notice. Complete and fully-functional working program(s) in executable form as well as complete source code of all work done. Complete copyrights to all work purchased. ## Platform ***Program must work in PCSpim 6.3 or 6.4 on a windows platform. PC...

    $25 (Avg Bid)
    $25 Avg Bida
    1 bida

    MIPS Program. Create 32 bit ALU using floating point arithmetic. Must create Addition,Subtraction,Mult and divison functions. Cannot use Mips built in function for this. Use algorithms. Also cannot use syscall command. See attached for full instructions. ## Deliverables Complete and fully-functional working program(s) in executable form as well as complete source code of all work done.

    $30 - $100
    $30 - $100
    0 bida