Basics of subroutines when programming in asm

Assignment Help Assembly Language
Reference no: EM132194348

Topic - Motorola 68000 Assembly

Purpose
This assignment is designed to familiarize you with the basics of subroutines when programming in ASM.

Requirements
This assignment consists of five major requirements.
1) Developing a solution to the problem below.
2) Ensuring that it assembles and runs correctly using the tools on edoras.
3) Documenting your solutions correctly.
4) Organizing your handin directory and submissions correctly.

Problem
1) For this program you will be creating two .s files (and you will turn in both .s files). You will be building a subroutine in the findmin.s file and a prog4.s file which will be your main. You should ORG your findmin subroutine to $6000.

Your findmin.s subroutine will recursively find the minimum value of an array of values.

You should implement the following psuedocode:

int findmin(int* vals, int count)
{
if(count == 1){
return vals[0];

}else{

int minrest = findmin(vals+1,count-1); if (minrest < vals[0]){
return minrest

}else{

}
}
}

return vals[0]

The basic idea is that the minimum value is either the first element of the list, or it is the minimum value from the rest of list. You should correctly implement the above psuedocode in your findmin.s file.

Your prog4.s file will be your main program. In it, you will define a data array of your choice. Your prog4.s file will print your title, print what the minimum value in the array should be then call the findmin function and print the minimum value that it returns with the provided strings. Program #4, SSS LLL, mascxxxx
Minimum number is: 4
Found Minimum number is: 4

In theory, you could write the program such that it simply prints to correct answer, but you should know that your findmin.s function will be tested independently of your prog4.s and validity of prog4.s will be inspected by hand.

2) You must ensure that your assembler can be assembled and run on rohan using the tools ppasm and bsvc. You may develop your solution on any machine you desire, as long as the final solution works on rohan.

3) Your solution must have a complete comment header as is detailed in your template.s file. During runtime, your solution to section 1 must output a correct title string as the first line printed. It should be in this format: Program #1, Student Name, mascXXXX

Attachment:- Problem.rar

Reference no: EM132194348

Questions Cloud

Maslow and herzberg to the understanding of worker : Describe and compare the basic contributions of Maslow and Herzberg to the understanding of worker motivation.
Maslow and herzberg to the understanding of worker : Describe and compare the basic contributions of Maslow and Herzberg to the understanding of worker motivation.
Identify the operative employment and contract laws : MBA 610 :Explain how the identified facts will help establish the legal rights and/or obligations of the defendant in relation to your company.
What significant historical or cultural event relate to text : Need help writing a 6 page paper from The Aeneid by Virgil and the City of Ladies by Christine de Pizan it must include comparison ex.
Basics of subroutines when programming in asm : Designed to familiarize you with the basics of subroutines when programming in ASM - Ensuring that it assembles and runs correctly using the tools on edoras
Enterprise resource planning system : What could be the possible risks associated with an Enterprise Resource Planning system (ERP)?
What could be done to reduce stress on the job : What could be done to reduce stress on the job and what strategies could be implemented to relieve stress when it does occur?
What is a job position in which you are interested : Based on these descriptions, describe two typical situations someone in this position would face; then write situational interview questions
Write a critique of the delivery technique : Look at the following video. Then write a critique of the delivery technique. Does this speaker, Emma Watson, follow the recommendations given.

Reviews

len2194348

12/15/2018 12:39:54 AM

Example Output Output is being recorded in, outfile 55555 Program #4, SSS LLL, mascxxxx Minimum number is: 4 Found Minimum number is: 4 Additional Details You do not need to do input checking. You can assume that the input value is a valid input.

Write a Review

Assembly Language Questions & Answers

  Create a assembly language subroutine

Create a assembly language subroutine MULSUM that takes an array named A containing n bytes of positive numbers, and fills two arrays, array B containing n words and array C containing n long words

  Write a function in linux assembly

Write a function in Linux assembly

  Analog measurements

Prepare an assembly program for the correctly measures the wind direction

  Design a simple digital clock

Design a simple digital clock

  Write an assembly program

Prepare an Assembly program that reads in a number of cents.

  Write an assembly language program

Write an assembly language program for encrypting alphabates of a string

  Greatest common divisor of integers-masm assembly language

Must be done in MASM assembly language: Greatest common divisor of two integers is largest integer which will evenly divide both integers. GCD algorithm involves integer division in a loop.

  Write assembly program-find right admission price to movie

Write the Assembly program to find correct admission price to movie. Price of admission to a movie is $7 for kids (under 12) and $9 for adults.

  Create simple 8-bit alu using add-subtract-shift functions

Create a simple 8-bit ALU. Requirements:The eight functions that you will implement are: add, subtract, and, or, shift left logical, less than, shift right logical.

  Write assembly program print binary representation-integers

Write the assembly program called hw6_ex1, stored in file hw6_ex1.asm. This program must prompt user to enter signed 32-bit integer. Program must print out binary representation of the integer.

  Allot op-codes and add microcode to microprogram

Allot op-codes and add microcode to microprogram of Mic-1 to implement following instructions which are then included with IJVM instruction set.

  Write mips assembly program to read two non-negative numbers

Write MIPS assembly program to repeatedly read two non-negative integers and print integer product and quotient without using multiplication and division instructions.

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd