Assembly Language for Intel-Based Computers, 4 th Edition. Chapter 8:Advanced Procedures

Similar documents
Advanced Procedures. Computer Organization and Assembly Languages Yung-Yu Chuang 2005/11/24. with slides by Kip Irvine

Procedure. Computer Organization and Assembly Languages Yung-Yu Chuang 2007/12/24. with slides by Kip Irvine

Islamic University Gaza Engineering Faculty Department of Computer Engineering ECOM 2125: Assembly Language LAB. Lab # 10. Advanced Procedures

Marking Scheme. Examination Paper. Module: Microprocessors (630313)

Assembly Language for Intel-Based Computers, 4 th Edition. Chapter 5: Procedures. Chapter Overview. The Book's Link Library

Assembly Language for Intel-Based Computers, 4 th Edition

22 Assembly Language for Intel-Based Computers, 4th Edition. 3. Each edge is a transition from one state to another, caused by some input.

Stack -- Memory which holds register contents. Will keep the EIP of the next address after the call

Assembly Language for Intel-Based Computers, 4 th Edition. Chapter 5: Procedures

EECE.3170: Microprocessor Systems Design I Summer 2017 Homework 4 Solution

Assembly Language. Lecture 5 Procedures

Assembly Language. Lecture 5 Procedures

Assembly Language for Intel-Based Computers, 5 th Edition. Chapter 9: Strings and Arrays

Microprocessors ( ) Fall 2010/2011 Lecture Notes # 15. Stack Operations. 10 top

Assembly Language for Intel-Based Computers, 4 th Edition

COE 205. Computer Organization and Assembly Language Dr. Aiman El-Maleh

Libraries and Procedures

Assembler Programming. Lecture 10

Islamic University Gaza Engineering Faculty Department of Computer Engineering ECOM 2125: Assembly Language LAB. Lab # 7. Procedures and the Stack

Libraries and Procedures

Assembly Language for Intel-Based Computers, 4 th Edition. Lecture 25: Interface With High-Level Language

Marking Scheme. Examination Paper. Module: Microprocessors (630313)

Lab 2: Introduction to Assembly Language Programming

Lab 4: Basic Instructions and Addressing Modes

16.317: Microprocessor Systems Design I Fall 2015

administrivia today start assembly probably won t finish all these slides Assignment 4 due tomorrow any questions?

X86 Addressing Modes Chapter 3" Review: Instructions to Recognize"

16.317: Microprocessor Systems Design I Fall 2014

Program Exploitation Intro

Assembly Language for Intel-Based Computers, 5 th Edition

Marking Scheme. Examination Paper Department of CE. Module: Microprocessors (630313)

Procedure-Calling Conventions October 30

CSC 2400: Computer Systems. Towards the Hardware: Machine-Level Representation of Programs

Assembly Language Programming

Assembly Language for Intel-Based Computers, 4 th Edition. Chapter 3: Assembly Language Fundamentals

CS 16: Assembly Language Programming for the IBM PC and Compatibles

CSC 8400: Computer Systems. Machine-Level Representation of Programs

COMPUTER ENGINEERING DEPARTMENT

16.317: Microprocessor Systems Design I Spring 2015

Lab 3: Defining Data and Symbolic Constants

Assembly Language for Intel-Based Computers, 4 th Edition

IA-32 Architecture. CS 4440/7440 Malware Analysis and Defense

Computer Systems Lecture 9

Assembly Language Programming: Procedures. EECE416 uc. Charles Kim Howard University. Fall

16.317: Microprocessor Systems Design I Fall 2013

Assembly Language: g Part III. First Semester 2013 Department of Computer Science Faculty of Science Chiang Mai University

Objectives. ICT106 Fundamentals of Computer Systems Topic 8. Procedures, Calling and Exit conventions, Run-time Stack Ref: Irvine, Ch 5 & 8

Islamic University Gaza Engineering Faculty Department of Computer Engineering ECOM 2125: Assembly Language LAB

ADDRESSING MODES. Operands specify the data to be used by an instruction

GLOBAL EDITION. Assembly Language. for x86 Processors SEVENTH EDITION. Kip R. Irvine

Introduction to Assembly Language

Lab 5: Input/Output using a Library of Procedures

Assembly Language Lab # 9

CSCI 334: Principles of Programming Languages. Computer Architecture (a really really fast introduction) Lecture 11: Control Structures II

Winter Compiler Construction T11 Activation records + Introduction to x86 assembly. Today. Tips for PA4. Today:

Chapter 3: Addressing Modes

Scott M. Lewandowski CS295-2: Advanced Topics in Debugging September 21, 1998

Assembly Language for Intel-Based Computers, 5 th Edition. Kip Irvine. Chapter 3: Assembly Language Fundamentals

EECE416 :Microcomputer Fundamentals and Design. X86 Assembly Programming Part 1. Dr. Charles Kim

Conditional Processing

/ 28 HLL assembly Q4: Conditional instructions / 40 TOTAL SCORE / 100 EXTRA CREDIT / 10

Computer Systems Organization V Fall 2009

Assembly Language for Intel-Based Computers, 5 th Edition. Chapter 3: Assembly Language Fundamentals

An Introduction to x86 ASM

Islamic University Gaza Engineering Faculty Department of Computer Engineering ECOM 2125: Assembly Language LAB. Lab # 8. Conditional Processing

EECE.3170: Microprocessor Systems Design I Summer 2017

Chapter 3: Assembly Language Fundamentals. Cristina G. Rivera

CSE P 501 Exam 8/5/04 Sample Solution. 1. (10 points) Write a regular expression or regular expressions that generate the following sets of strings.

Sample Exam I PAC II ANSWERS

CSE P 501 Compilers. x86 Lite for Compiler Writers Hal Perkins Autumn /25/ Hal Perkins & UW CSE J-1

UNIT 4. Modular Programming

Practical Malware Analysis

Subprograms: Local Variables

CS412/CS413. Introduction to Compilers Tim Teitelbaum. Lecture 21: Generating Pentium Code 10 March 08

Assembly Language Fundamentals

Procedures CHAPTER The 80x86 Stack Bit Procedures with Value Parameters. 6.3 Additional 32-Bit Procedure Options Bit Procedures

Machine and Assembly Language Principles

AS08-C++ and Assembly Calling and Returning. CS220 Logic Design AS08-C++ and Assembly. AS08-C++ and Assembly Calling Conventions

Module 3 Instruction Set Architecture (ISA)

Low-Level Essentials for Understanding Security Problems Aurélien Francillon

Summary: Direct Code Generation

Philadelphia University Student Name: Student Number:

Computer Architecture and Assembly Language. Practical Session 3

COMPUTER ENGINEERING DEPARTMENT

x86 Assembly Crash Course Don Porter

Lab 3. The Art of Assembly Language (II)

UMBC. contain new IP while 4th and 5th bytes contain CS. CALL BX and CALL [BX] versions also exist. contain displacement added to IP.

Assembly Language Fundamentals

Introduction to Assembly Language

Islamic University Gaza Engineering Faculty Department of Computer Engineering ECOM 2125: Assembly Language LAB

Strings and Arrays. Overview. String primitive instructions MOVSB, MOVSW, MOVSD

complement) Multiply Unsigned: MUL (all operands are nonnegative) AX = BH * AL IMUL BH IMUL CX (DX,AX) = CX * AX Arithmetic MUL DWORD PTR [0x10]

Lab 6: Conditional Processing

Assembly Language for Intel-Based Computers, 4 th Edition. Chapter 6: Conditional Processing

x86 assembly CS449 Spring 2016

Overview of Compiler. A. Introduction

Data Transfers, Addressing, and Arithmetic. Part 2

Assembly Fundamentals

mith College Computer Science CSC231 Assembly Week #11 Fall 2017 Dominique Thiébaut

6/20/2011. Introduction. Chapter Objectives Upon completion of this chapter, you will be able to:

Transcription:

Assembly Language for Intel-Based Computers, 4 th Edition Kip R. Irvine Chapter 8:Advanced Procedures (c) Pearson Education, 2002. All rights reserved.

Chapter Overview Local Variables Stack Parameters Stack Frames Recursion Creating Multimodule Programs Irvine, Kip R. Assembly Language for Intel-Based Computers, 2003. 2

Local Directive A local variable is created, used, and destroyed within a single procedure The LOCAL directive declares a list of local variables immediately follows the PROC directive each variable is assigned a type Syntax: Example: LOCAL varlist MySub PROC LOCAL var1:byte, var2:word, var3:sdword Irvine, Kip R. Assembly Language for Intel-Based Computers, 2003. 3

MASM-Generated Code (1 of 2) BubbleSort PROC LOCAL temp:dword, SwapFlag:BYTE... ret BubbleSort ENDP MASM generates the following code: BubbleSort PROC push ebp mov ebp,esp add esp,0fffffff8h... mov esp,ebp pop ebp ret BubbleSort ENDP ; add -8 to ESP Irvine, Kip R. Assembly Language for Intel-Based Computers, 2003. 4

MASM-Generated Code (2 of 2) Diagram of the stack frame for the BubbleSort procedure: return address ESP EBP EBP temp [EBP - 4] SwapFlag [EBP - 8] Irvine, Kip R. Assembly Language for Intel-Based Computers, 2003. 5

Stack Parameters Register vs. Stack Parameters INVOKE Directive PROC Directive PROTO Directive Passing by Value or by Reference Parameter Classifications Example: Exchanging Two Integers Trouble-Shooting Tips Irvine, Kip R. Assembly Language for Intel-Based Computers, 2003. 6

Register vs. Stack Parameters Register parameters require dedicating a register to each parameter. Stack parameters are more convenient Imagine two possible ways of calling the DumpMem procedure. Clearly the second is easier: pushad mov esi,offset array mov ecx,lengthof array mov ebx,type array call DumpMem popad push OFFSET array push LENGTHOF array push TYPE array call DumpMem Irvine, Kip R. Assembly Language for Intel-Based Computers, 2003. 7

INVOKE Directive The INVOKE directive is a powerful replacement for Intel s CALL instruction that lets you pass multiple arguments. Syntax: INVOKE procedurename [, argumentlist] ArgumentList is an optional comma-delimited list of procedure arguments Arguments can be: immediate values and integer expressions variable names address and ADDR expressions register names Irvine, Kip R. Assembly Language for Intel-Based Computers, 2003. 8

INVOKE Examples.data byteval BYTE 10 wordval WORD 1000h.code ; direct operands: INVOKE Sub1,byteVal,wordVal ; address of variable: INVOKE Sub2,ADDR byteval ; register name, integer expression: INVOKE Sub3,eax,(10 * 20) ; address expression (indirect operand): INVOKE Sub4,[ebx] Irvine, Kip R. Assembly Language for Intel-Based Computers, 2003. 9

ADDR Operator Returns a near or far pointer to a variable, depending on which memory model your program uses: Small model: returns 16-bit offset Large model: returns 32-bit segment/offset Flat model: returns 32-bit offset Simple example:.data myword WORD?.code INVOKE mysub,addr myword Irvine, Kip R. Assembly Language for Intel-Based Computers, 2003. 10

PROC Directive The PROC directive declares a procedure with an optional list of named parameters. Syntax: label PROC paramlist paramlist is a list of parameters separated by commas. Each parameter has the following syntax: paramname:type type must either be one of the standard ASM types (BYTE, SBYTE, WORD, etc.), or it can be a pointer to one of these types. Irvine, Kip R. Assembly Language for Intel-Based Computers, 2003. 11

PROC Examples (1 of 3) The AddTwo procedure receives two integers and returns their sum in EAX. AddTwo PROC, val1:dword, val2:dword mov eax,val1 add eax,val2 ret AddTwo ENDP Irvine, Kip R. Assembly Language for Intel-Based Computers, 2003. 12

PROC Examples (2 of 3) FillArray receives a pointer to an array of bytes, a single byte fills value that will be copied to each element of the array, and the size of the array. FillArray PROC, parray:ptr BYTE, fillval:byte arraysize:dword mov ecx,arraysize mov esi,parray mov al,fillval L1: mov [esi],al inc esi loop L1 ret FillArray ENDP Irvine, Kip R. Assembly Language for Intel-Based Computers, 2003. 13

PROC Examples (3 of 3) Swap PROC, pvalx:ptr DWORD, pvaly:ptr DWORD... Swap ENDP ReadFile PROC, pbuffer:ptr BYTE LOCAL filehandle:dword... ReadFile ENDP Irvine, Kip R. Assembly Language for Intel-Based Computers, 2003. 14

PROTO Directive Creates a procedure prototype Syntax: label PROTO paramlist Every procedure called by the INVOKE directive must have a prototype A complete procedure definition can also serve as its own prototype. Irvine, Kip R. Assembly Language for Intel-Based Computers, 2003. 15

PROTO Directive Standard configuration: PROTO appears at top of the program listing, INVOKE appears in the code segment, and the procedure implementation occurs later in the program: MySub PROTO.code INVOKE MySub ; procedure prototype ; procedure call MySub PROC.. MySub ENDP ; procedure implementation Irvine, Kip R. Assembly Language for Intel-Based Computers, 2003. 16

PROTO Example Prototype for the ArraySum procedure, showing its parameter list: ArraySum PROTO, ptrarray:ptr DWORD, szarray:dword ; points to the array ; array size Irvine, Kip R. Assembly Language for Intel-Based Computers, 2003. 17

Passing by Value When a procedure argument is passed by value, a copy of a 16-bit or 32-bit integer is pushed on the stack. Example:.data mydata WORD 1000h.code main PROC INVOKE Sub1, mydata MASM generates the following code: push mydata call Sub1 Irvine, Kip R. Assembly Language for Intel-Based Computers, 2003. 18

Passing by Reference When an argument is passed by reference, its address is pushed on the stack. Example:.data mydata WORD 1000h.code main PROC INVOKE Sub1, ADDR mydata MASM generates the following code: push OFFSET mydata call Sub1 Irvine, Kip R. Assembly Language for Intel-Based Computers, 2003. 19

Parameter Classifications An input parameter is data passed by a calling program to a procedure. The called procedure is not expected to modify the corresponding parameter variable, and even if it does, the modification is confined to the procedure itself. An output parameter is created by passing a pointer to a variable when a procedure is called. The procedure does not use any existing data from the variable, but it fills in a new value before it returns. An input-output parameter represents a value passed as input to a procedure, which the procedure may modify. The same parameter is then able to return the changed data to the calling program. Irvine, Kip R. Assembly Language for Intel-Based Computers, 2003. 20

Example: Exchanging Two Integers The Swap procedure exchanges the values of two 32-bit integers. pvalx and pvaly do not change values, but the integers they point to are modified. Swap PROC USES eax esi edi, pvalx:ptr DWORD, ; pointer to first integer pvaly:ptr DWORD ; pointer to second integer mov esi,pvalx mov edi,pvaly mov eax,[esi] xchg eax,[edi] mov [esi],eax ret Swap ENDP ; get pointers ; get first integer ; exchange with second ; replace first integer Irvine, Kip R. Assembly Language for Intel-Based Computers, 2003. 21

Trouble-Shooting Tips Save and restore registers when they are modified by a procedure. Except a register that returns a function result When using INVOKE, be careful to pass a pointer to the correct data type. For example, MASM cannot distinguish between a PTR DWORD argument and a PTR BYTE argument. Do not pass an immediate value to a procedure that expects a reference parameter. Dereferencing its address will likely cause a generalprotection fault. Irvine, Kip R. Assembly Language for Intel-Based Computers, 2003. 22

Stack Frames Memory Models Language Specifiers Explicit Access to Stack Parameters Passing Arguments by Reference Creating Local Variables Irvine, Kip R. Assembly Language for Intel-Based Computers, 2003. 23

Stack Frame Also known as an activation record Area of the stack set aside for a procedure's return address, passed parameters, saved registers, and local variables Created by the following steps: Calling program pushes arguments on the stack and calls the procedure. The called procedure pushes EBP on the stack, and sets EBP to ESP. If local variables are needed, a constant is subtracted from ESP to make room on the stack. Irvine, Kip R. Assembly Language for Intel-Based Computers, 2003. 24

Memory Models A program's memory model determines the number and sizes of code and data segments. Real-address mode supports tiny, small, medium, compact, large, and huge models. Protected mode supports only the flat model. Small model: code < 64 KB, data (including stack) < 64 KB. All offsets are 16 bits. Flat model: single segment for code and data, up to 4 GB. All offsets are 32 bits. Irvine, Kip R. Assembly Language for Intel-Based Computers, 2003. 25

.MODEL Directive.MODEL directive specifies a program's memory model and model options (language-specifier). Syntax:.MODEL memorymodel [,modeloptions] memorymodel can be one of the following: tiny (a single segment, used by.com programs), small (one code segment and one data segment), medium (multiple code segments and a single data segment), compact (one code segment and multiple data segments), large (multiple code and data segments), huge (same as the large model, except that individual data item may be larger than a single segment), or flat (protected mode. Uses 32-bit offsets for code and data) Irvine, Kip R. Assembly Language for Intel-Based Computers, 2003. 26

Language Specifiers modeloptions includes the language specifier: procedure naming scheme parameter passing conventions stdcall procedure arguments pushed on stack in reverse order (right to left) called procedure cleans up the stack INVOKE AddTwo,5,6 push 6 push 5 call AddTwo ; second argument ; first argument Irvine, Kip R. Assembly Language for Intel-Based Computers, 2003. 27

Explicit Access to Stack Parameters A procedure can explicitly access stack parameters using constant offsets from EBP. Example: [ebp + 8] EBP is often called the base pointer or frame pointer because it holds the base address of the stack frame. EBP does not change value during the procedure. EBP must be restored to its original value when a procedure returns. Irvine, Kip R. Assembly Language for Intel-Based Computers, 2003. 28

Stack Frame Example (1 of 2).data sum DWORD?.code push 6 ; second argument push 5 ; first argument call AddTwo ; EAX = sum mov sum,eax ; save the sum AddTwo PROC push ebp mov ebp,esp.. 00000006 00000005 return address EBP [EBP + 12] [EBP + 8] [EBP + 4] EBP, ESP Irvine, Kip R. Assembly Language for Intel-Based Computers, 2003. 29

Stack Frame Example (2 of 2) 00000006 00000005 return address EBP [EBP + 12] [EBP + 8] [EBP + 4] EBP, ESP AddTwo PROC push ebp mov ebp,esp ; base of stack frame mov eax,[ebp + 12] ; second argument (6) add eax,[ebp + 8] ; first argument (5) pop ebp ret 8 ; clean up the stack AddTwo ENDP ; EAX contains the sum Irvine, Kip R. Assembly Language for Intel-Based Computers, 2003. 30

Your turn... Create a procedure named Difference that subtracts the first argument from the second one. Following is a sample call: push 14 ; first argument push 30 ; second argument call Difference ; EAX = 16 Difference PROC push ebp mov ebp,esp mov eax,[ebp + 8] ; second argument sub eax,[ebp + 12] ; first argument pop ebp ret 8 Difference ENDP Irvine, Kip R. Assembly Language for Intel-Based Computers, 2003. 31

Passing Arguments by Reference (1 of 2) The ArrayFill procedure fills an array with 16-bit random integers The calling program passes the address of the array, along with a count of the number of array elements:.data count = 100 array WORD count DUP(?).code push OFFSET array push COUNT call ArrayFill Irvine, Kip R. Assembly Language for Intel-Based Computers, 2003. 32

Passing Arguments by Reference (2 of 2) ArrayFill can reference an array without knowing the array's name: ArrayFill PROC push ebp mov ebp,esp pushad mov esi,[ebp+12] mov ecx,[ebp+8].. offset(array) count return address EBP [EBP + 12] [EBP + 8] EBP ESI points to the beginning of the array, so it's easy to use a loop to access each array element. View the complete program. Irvine, Kip R. Assembly Language for Intel-Based Computers, 2003. 33

LEA Instruction The LEA instruction returns offsets of indirect operands. OFFSET operator can only return constant assembly time offsets. LEA is required when obtaining the offset of a stack parameter or local variable. For example: CopyString PROC, count:dword LOCAL temp[20]:byte mov edi,offset count mov esi,offset temp lea edi,count lea esi,temp ; invalid operand ; invalid operand ; ok ; ok Irvine, Kip R. Assembly Language for Intel-Based Computers, 2003. 34

Creating Local Variables To explicitly create local variables, subtract their total size from ESP. The following example creates and initializes two 32- bit local variables (we'll call them loca and locb). MySub PROC push ebp mov ebp,esp sub esp,8 mov [ebp-4],123456h ; loca mov [ebp-8],0 ; locb.. Irvine, Kip R. Assembly Language for Intel-Based Computers, 2003. 35

ENTER and LEAVE Instructions ENTER instruction automatically creates a stack frame for a called procedure. Push EBP on the stack Set EBP to the base of the stack (mov ebp,esp) Reserve space for local variables (sub esp,numbytes) ENTER localbytes,nestinglevel LEAVE instruction terminates the stack frame for a procedure. MySub PROC enter 8,0.. leave ret MySub ENDP MySub PROC push ebp mov ebp,esp sub esp,8.. mov esp,ebp pop ebp ret MySub ENDP Irvine, Kip R. Assembly Language for Intel-Based Computers, 2003. 36

Recursion What is recursion? Recursively Calculating a Sum Calculating a Factorial Irvine, Kip R. Assembly Language for Intel-Based Computers, 2003. 37

What is Recursion? The process created when... A procedure calls itself Procedure A calls procedure B, which in turn calls procedure A Using a graph in which each node is a procedure and each edge is a procedure call, recursion forms a cycle: A E B D C Irvine, Kip R. Assembly Language for Intel-Based Computers, 2003. 38

Recursively Calculating a Sum The CalcSum procedure recursively calculates the sum of an array of integers. Receives: ECX = count. Returns: EAX = sum CalcSum PROC cmp ecx,0 jz L2 add eax,ecx dec ecx call CalcSum L2: ret CalcSum ENDP ; check counter value ; quit if zero ; otherwise, add to sum ; decrement counter ; recursive call View the complete program Irvine, Kip R. Assembly Language for Intel-Based Computers, 2003. 39

Calculating a Factorial (1 of 3) This function calculates the factorial of integer n. A new value of n is saved in each stack frame: int function factorial(int n) { if(n == 0) return 1; else return n * factorial(n-1); } As each call instance returns, the product it returns is multiplied by the previous value of n. recursive calls 5! = 5 * 4! 4! = 4 * 3! 3! = 3 * 2! 2! = 2 * 1! 1! = 1 * 0! 0! = 1 (base case) backing up 5 * 24 = 120 4 * 6 = 24 3 * 2 = 6 2 * 1 = 2 1 * 1 = 1 1 = 1 Irvine, Kip R. Assembly Language for Intel-Based Computers, 2003. 40

Calculating a Factorial (2 of 3) Factorial PROC push ebp mov ebp,esp mov eax,[ebp+8] ; get n cmp eax,0 ; n < 0? ja L1 ; yes: continue mov eax,1 ; no: return 1 jmp L2 L1: dec eax push eax call Factorial ; Factorial(n-1) ; Instructions from this point on execute when each ; recursive call returns. ReturnFact: mov ebx,[ebp+8] ; get n mul ebx ; ax = ax * bx L2: pop ebp ; return EAX ret 4 ; clean up stack Factorial ENDP Irvine, Kip R. Assembly Language for Intel-Based Computers, 2003. 41

Calculating a Factorial (3 of 3) 12 n ReturnMain Suppose we want to calculate 12! This diagram shows the first few stack frames created by recursive calls to Factorial Each recursive call uses 12 bytes of stack space. ebp 0 11 ReturnFact ebp 1 10 ReturnFact ebp 2 9 ReturnFact ebp 3 (etc...) n-1 n-2 n-3 Irvine, Kip R. Assembly Language for Intel-Based Computers, 2003. 42

Multimodule Programs A multimodule program is a program whose source code has been divided up into separate ASM files. Each ASM file (module) is assembled into a separate OBJ file. All OBJ files belonging to the same program are linked using the link utility into a single EXE file. Irvine, Kip R. Assembly Language for Intel-Based Computers, 2003. 43

Advantages Large programs are easier to write, maintain, and debug when divided into separate source code modules. When changing a line of code, only its enclosing module needs to be assembled again. Linking assembled modules requires little time. A module can be a container for logically related code and data (think object-oriented here...) encapsulation: procedures and variables are automatically hidden in a module unless you declare them public Irvine, Kip R. Assembly Language for Intel-Based Computers, 2003. 44

Creating a Multimodule Program Here are some basic steps to follow when creating a multimodule program: Create the main module Create a separate source code module for each procedure or set of related procedures Create an include file that contains procedure prototypes for external procedures (ones that are called between modules) Use the INCLUDE directive to make your procedure prototypes available to each module Irvine, Kip R. Assembly Language for Intel-Based Computers, 2003. 45

Example: ArraySum Program Let's review the ArraySum program from Chapter 5. Summation Program (main) Clrscr PromptForIntegers ArraySum DisplaySum WriteString ReadInt WriteString WriteInt Each of the four white rectangles will become a module. Irvine, Kip R. Assembly Language for Intel-Based Computers, 2003. 46

Sample Program output Enter a signed integer: -25 Enter a signed integer: 36 Enter a signed integer: 42 The sum of the integers is: +53 Irvine, Kip R. Assembly Language for Intel-Based Computers, 2003. 47

INCLUDE Irvine32.inc INCLUDE File The sum.inc file contains prototypes for external functions that are not in the Irvine32 library: PromptForIntegers PROTO, ptrprompt:ptr BYTE, ptrarray:ptr DWORD, arraysize:dword ArraySum PROTO, ptrarray:ptr DWORD, count:dword DisplaySum PROTO, ptrprompt:ptr BYTE, thesum:dword ; prompt string ; points to the array ; size of the array ; points to the array ; size of the array ; prompt string ; sum of the array Irvine, Kip R. Assembly Language for Intel-Based Computers, 2003. 48