Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

This is very simple, just change the string displayed in the ASM program below to be: Assignment 1 for your name. and perform a 2

This is very simple, just change the string displayed in the ASM program below to be:

Assignment 1 for your name.

and perform a 2nd system call that outputs: All done.

This means that you little assembly program will do three system calls.

For your name in the above, use the name you want credit given for the assignment.

You may run the program on your PC if you have an assembler loaded on it. Otherwise, you can go out on the Internet to site https://www.tutorialspoint.com/compile_assembly_online.php (this is probably the example program there).

You are to use a screen shot to show the output for this assignment and this assignment only. Place a copy of your program and the screen shot showing your output in the drop box for assignment 1 on D2L.

section .text

global _start ;must be declared for using gcc

_start: ;tell linker entry point

mov edx, len ;message length

mov ecx, msg ;message to write

mov ebx, 1 ;file descriptor (stdout)

mov eax, 4 ;system call number (sys_write)

int 0x80 ;call kernel

mov eax, 1 ;system call number (sys_exit)

int 0x80 ;call kernel

section .data

msg db 'Hello, world! ;our dear string

len equ $ - msg ;length of our dear string

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Understanding Databases Concepts And Practice

Authors: Suzanne W Dietrich

1st Edition

1119827949, 9781119827948

More Books

Students also viewed these Databases questions

Question

What is dividend payout ratio ?

Answered: 1 week ago

Question

Explain the factors affecting dividend policy in detail.

Answered: 1 week ago

Question

2 What supply is and what affects it.

Answered: 1 week ago