Please create an x64 Assembly project (Linux and Ubuntu). It
should include at least 4 outputs and 2 user inputs. The outputs
should incorporate the user input.
Example:
Output: What is your name?
Input: Matthew
Output: Nice to meet you Matthew
Output: Where are you from?
Input: Germany
Output: No way! I am also from
Germany
Be creative! Make sure to upload the .asm file
section .data
text1 db "What is your name? "
text2 db "Hello, "
text3 db "where are you from? "
text4 db "wow! What a coincident, i am also from "
section .bss
name resb 16
place resb 16
section .text
global _start
_start:
call _printText1
call _getName
call _printText2
call _printName
call _printText3
call _getPlace
call _printText4
call _printPlace
mov rax, 60
mov rdi, 0
syscall
_getName:
mov rax, 0
mov rdi, 0
mov rsi, name
mov rdx, 16
syscall
ret
_printText1:
mov rax, 1
mov rdi, 1
mov rsi, text1
mov rdx, 19
syscall
ret
_printText2:
mov rax, 1
mov rdi, 1
mov rsi, text2
mov rdx, 7
syscall
ret
_printName:
mov rax, 1
mov rdi, 1
mov rsi, name
mov rdx, 16
syscall
ret
_getPlace:
mov rax, 0
mov rdi, 0
mov rsi, place
mov rdx, 16
syscall
ret
_printText3:
mov rax, 1
mov rdi, 1
mov rsi, text3
mov rdx, 20
syscall
ret
_printText4:
mov rax, 1
mov rdi, 1
mov rsi, text4
mov rdx, 39
syscall
ret
_printName:
mov rax, 1
mov rdi, 1
mov rsi, place
mov rdx, 16
syscall
ret
Please create an x64 Assembly project (Linux and Ubuntu). It should include at least 4 outputs...
We would like to create an Assembly program whose executable is called division.exe and that behaves as follows: It requests a positive number from the user. Once it gets the user input, it divides the number by 5 without using the DIV instruction in assembly It outputs the Quotient and the Remainder As an example, if a user runs the assembly program division.exe and provides a value 34 as an input, the display should show the following:...
java Part 1 Create a NetBeans project that asks for a file name. The file should contain an unknown quantity of double numeric values with each number on its own line. There should be no empty lines. Open the file and read the numbers. Print the sum, average, and the count of the numbers. Be sure to label the outputs very clearly. Read the file values as Strings and use Double.parseDouble() to convert them. Part 2 Create a NetBeans project...
For some reason nobody out there answers this question, Please
please help me with this, Let me know if any further info will be
needed.
Create a MARIE assembly program which inputs two integers, X and Y, computes 3X + 4Y, and outputs the result. Requirements 1. The program must be written in MARIE Assembly Language. 2. It must use a subroutine to perform the multiplications. 3. You do not need to prompt for the input, just use the Input...
The input file should be called 'data.txt' and should be created according to the highlighted instructions below. Note that even though you know the name of the input file, you should not hard-code this name into your program. Instead, prompt the user for the name of the input file. The input file should contain (in order): the weight (a number greater than zero and less than or equal to 1), the number, n, of lowest numbers to drop, and the...
Write a C program that should run on Linux platform using gcc
compiler. You are required to
simulate threads creation and termination behavior by using POSIX
threads library.
Input:
In the main program, first take the value for total number of
threads and then ask user to provide
the arrival time and CPU time (i.e. running time) for each
thread.
Output:
Simulate the behavior of threads arrival, working and termination
at a specific time interval (i.e.
500ms).
Requirements:
i. Name...
23.4 Project 4: Using Pandas for data analysis and practice with
error handling
Python Please!
23.4 PROJECT 4: Using Pandas for data analysis and practice with error handling Overview In this project, you will use the Pandas module to analyze some data about some 20th century car models, country of origin, miles per gallon, model year, etc. Provided Input Files An input file with nearly 200 rows of data about automobiles. The input file has the following format (the same...
C++ project we need to create a class for Book and Warehouse
using Book.h and Warehouse.h header files given. Then make a main
program using Book and Warehouse to read data from book.dat and
have functions to list and find book by isbn
Objectives: Class Association and operator overloading This project is a continuation from Project 1. The program should accept the same input data file and support the same list and find operations. You will change the implementation of...
need help with this assignment, please. Part 1 - Java program named MemoryCalculator In your Ubuntu VM (virtual machine), using terminal mode ONLY, do the following: Create the folder program2 In this folder place the text file located on my faculty website in Module 2 called RAMerrors (Do not rename this file, it has no extension.) It is down below. Ths is the file RAMErrors 3CDAEFFAD ABCDEFABC 7A0EDF301 1A00D0000 Each record in this file represents the location of an error...
In C++ please! Please include .cpp and .hpp files! Thank you! Recursive Functions Goals Create and use recursive functions In this lab, we will write a program that uses three recursive functions. Requirements: Important: You must use the array for this lab, no vectors allowed. First Recursive Function Write a function that recursively prints a string in reverse. The function has ONLY one parameter of type string. It prints the reversed character to the screen followed by a newline character....
In C++, Please help me compute the following flowchart exactly like this requirement: Use while loops for the input validations required: number of employees(cannot be less than 1) and number of days any employee missed(cannot be a negative number, 0 is valid.) Each function needs a separate flowchart. The function charts are not connected to main with flowlines. main will have the usual start and end symbols. The other three functions should indicate the parameters, if any, in start; and...