Test Bank for Assembly Language for x86 Processors 7th Edition Kip Irvine - download pdf

23 people are viewing this right now

Format: PDF, EPUB

Availability: Many In Stock

Product Type: Digital Download

Regular price $34.99
Sale price $34.99 Regular price
Unit price
Ask a question

Ask a Question

* Required fields

Size guide Share

Fast E-mail Delivery

Get quick access to your product right after purchase—no wait times.

Estimated to be delivered 0-6 H

Test Bank for Assembly Language for x86 Processors 7th Edition Kip Irvine - download pdf

Test Bank for Assembly Language for x86 Processors 7th Edition Kip Irvine - download pdf

Regular price $34.99
Sale price $34.99 Regular price
Unit price
Product description
Advantages of Ebooks
Delivery & Return
Test Bank for Assembly Language for x86 Processors 7th Edition Kip Irvine

Test Bank for Assembly Language for x86 Processors 7th Edition Kip Irvine\nTest Bank for Assembly Language for x86 Processors 7th Edition Kip Irvine\nAssembly Language for x86 Processors, 7e is suitable for undergraduate courses in assembly language programming and introductory courses in computer systems and computer architecture. Proficiency in one other programming language, preferably Java, C, or C++, is recommended.\nWritten specifically for 32- and 64-bit Intel/Windows platform, this complete and fully updated study of assembly language teaches students to write and debug programs at the machine level. This text simplifies and demystifies concepts that students need to grasp before they can go on to more advanced computer architecture and operating systems courses. Students put theory into practice through writing software at the machine level, creating a memorable experience that gives them the confidence to work in any OS/machine-oriented environment.\nAdditional learning and teaching tools are available on the author’s web site at http://asmirvine.com/ where both instructors and students can access chapter objectives, debugging tools, supplemental files, a Getting Started with MASM and Visual Studio 2012 tutorial, and more.\nTeaching and Learning Experience\nThis program presents a better teaching and learning experience—for you and your students. It will help:\nTeach Effective Design Techniques: Top-down program design demonstration and explanation allows students to apply techniques to multiple programming courses.\nPut Theory into Practice: Students will write software at the machine level, preparing them to work in any OS/machine-oriented environment.\nTailor the Text to Fit your Course: Instructors can cover optional chapter topics in varying order and depth.\nSupport Instructors and Students: Visit the author’s web site http://asmirvine.com/ for chapter objectives, debugging tools, supplemental files, a Getting Started with MASM and Visual Studio 2012 tutorial, and more.\n[wp-embedder-pack url=”https://manual-solution.com/wp-content/uploads/2022/07/Test-Bank-for-Assembly-Language-for-x86-Processors-7th-Edition-Kip-Irvine.pdf” width=”100%” height=”400px” download-text=”” download=”off”][/wp-embedder-pack]\nTable of Contents\nPreface xxiii\n1 Basic Concepts 1\n1.1 Welcome to Assembly Language 1\n1.1.1 Questions You Might Ask 3\n1.1.2 Assembly Language Applications 6\n1.1.3 Section Review 6\n1.2 Virtual Machine Concept 7\n1.2.1 Section Review 9\n1.3 Data Representation 9\n1.3.1 Binary Integers 10\n1.3.2 Binary Addition 12\n1.3.3 Integer Storage Sizes 13\n1.3.4 Hexadecimal Integers 13\n1.3.5 Hexadecimal Addition 15\n1.3.6 Signed Binary Integers 16\n1.3.7 Binary Subtraction 18\n1.3.8 Character Storage 19\n1.3.9 Section Review 21\n1.4 Boolean Expressions 22\n1.4.1 Truth Tables for Boolean Functions 24\n1.4.2 Section Review 26\n1.5 Chapter Summary 26\n1.6 Key Terms 27\n1.7 Review Questions and Exercises 28\n1.7.1 Short Answer 28\n1.7.2 Algorithm Workbench 30\n2 x86 Processor Architecture 32\n2.1 General Concepts 33\n2.1.1 Basic Microcomputer Design 33\n2.1.2 Instruction Execution Cycle 34\n2.1.3 Reading from Memory 36\n2.1.4 Loading and Executing a Program 36\n2.1.5 Section Review 37\n2.2 32-Bit x86 Processors 37\n2.2.1 Modes of Operation 37\n2.2.2 Basic Execution Environment 38\n2.2.3 x86 Memory Management 41\n2.2.4 Section Review 42\n2.3 64-Bit x86-64 Processors 42\n2.3.1 64-Bit Operation Modes 43\n2.3.2 Basic 64-Bit Execution Environment 43\n2.4 Components of a Typical x86 Computer 44\n2.4.1 Motherboard 44\n2.4.2 Memory 46\n2.4.3 Section Review 46\n2.5 Input—Output System 47\n2.5.1 Levels of I/O Access 47\n2.5.2 Section Review 49\n2.6 Chapter Summary 50\n2.7 Key Terms 51\n2.8 Review Questions 52\n3 Assembly Language Fundamentals 53\n3.1 Basic Language Elements 54\n3.1.1 First Assembly Language Program 54\n3.1.2 Integer Literals 55\n3.1.3 Constant Integer Expressions 56\n3.1.4 Real Number Literals 57\n3.1.5 Character Literals 57\n3.1.6 String Literals 58\n3.1.7 Reserved Words 58\n3.1.8 Identifiers 58\n3.1.9 Directives 59\n3.1.10 Instructions 60\n3.1.11 Section Review 63\n3.2 Example: Adding and Subtracting Integers 63\n3.2.1 The AddTwo Program 63\n3.2.2 Running and Debugging the AddTwo Program 65\n3.2.3 Program Template 70\n3.2.4 Section Review 70\n3.3 Assembling, Linking, and Running Programs 71\n3.3.1 The Assemble-Link-Execute Cycle 71\n3.3.2 Listing File 71\n3.3.3 Section Review 73\n3.4 Defining Data 74\n3.4.1 Intrinsic Data Types 74\n3.4.2 Data Definition Statement 74\n3.4.3 Adding a Variable to the AddTwo Program 75\n3.4.4 Defining BYTE and SBYTE Data 76\n3.4.5 Defining WORD and SWORD Data 78\n3.4.6 Defining DWORD and SDWORD Data 79\n3.4.7 Defining QWORD Data 79\n3.4.8 Defining Packed BCD (TBYTE) Data 80\n3.4.9 Defining Floating-Point Types 81\n3.4.10 A Program That Adds Variables 81\n3.4.11 Little-Endian Order 82\n3.4.12 Declaring Uninitialized Data 83\n3.4.13 Section Review 83\n3.5 Symbolic Constants 84\n3.5.1 Equal-Sign Directive 84\n3.5.2 Calculating the Sizes of Arrays and Strings 85\n3.5.3 EQU Directive 86\n3.5.4 TEXTEQU Directive 87\n3.5.5 Section Review 88\n3.6 64-Bit Programming 88\n3.7 Chapter Summary 90\n3.8 Key Terms 91\n3.8.1 Terms 91\n3.8.2 Instructions, Operators, and Directives 92\n3.9 Review Questions and Exercises 92\n3.9.1 Short Answer 92\n3.9.2 Algorithm Workbench 93\n3.10 Programming Exercises 94\n4 Data Transfers, Addressing, and Arithmetic 95\n4.1 Data Transfer Instructions 96\n4.1.1 Introduction 96\n4.1.2 Operand Types 96\n4.1.3 Direct Memory Operands 96\n4.1.4 MOV Instruction 98\n4.1.5 Zero/Sign Extension of Integers 99\n4.1.6 LAHF and SAHF Instructions 101\n4.1.7 XCHG Instruction 102\n4.1.8 Direct-Offset Operands 102\n4.1.9 Example Program (Moves) 103\n4.1.10 Section Review 104\n4.2 Addition and Subtraction 105\n4.2.1 INC and DEC Instructions 105\n4.2.2 ADD Instruction 105\n4.2.3 SUB Instruction 106\n4.2.4 NEG Instruction 106\n4.2.5 Implementing Arithmetic Expressions 106\n4.2.6 Flags Affected by Addition and Subtraction 107\n4.2.7 Example Program (AddSubTest) 111\n4.2.8 Section Review 112\n4.3 Data-Related Operators and Directives 112\n4.3.1 OFFSET Operator 112\n4.3.2 ALIGN Directive 113\n4.3.3 PTR Operator 114\n4.3.4 TYPE Operator 115\n4.3.5 LENGTHOF Operator 116\n4.3.6 SIZEOF Operator 116\n4.3.7 LABEL Directive 116\n4.3.8 Section Review 117\n4.4 Indirect Addressing 117\n4.4.1 Indirect Operands 117\n4.4.2 Arrays 118\n4.4.3 Indexed Operands 119\n4.4.4 Pointers 121\n4.4.5 Section Review 122\n4.5 JMP and LOOP Instructions 123\n4.5.1 JMP Instruction 123\n4.5.2 LOOP Instruction 124\n4.5.3 Displaying an Array in the Visual Studio Debugger 125\n4.5.4 Summing an Integer Array 126\n4.5.5 Copying a String 127\n4.5.6 Section Review 128\n4.6 64-Bit Programming 128\n4.6.1 MOV Instruction 128\n4.6.2 64-Bit Version of SumArray 130\n4.6.3 Addition and Subtraction 130\n4.6.4 Section Review 131\n4.7 Chapter Summary 132\n4.8 Key Terms 133\n4.8.1 Terms 133\n4.8.2 Instructions, Operators, and Directives 133\n4.9 Review Questions and Exercises 134\n4.9.1 Short Answer 134\n4.9.2 Algorithm Workbench 136\n4.10 Programming Exercises 137\n5 Procedures 139\n5.1 Stack Operations 140\n5.1.1 Runtime Stack (32-bit mode) 140\n5.1.2 PUSH and POP Instructions 142\n5.1.3 Section Review 145\n5.2 Defining and Using Procedures 145\n5.2.1 PROC Directive 145\n5.2.2 CALL and RET Instructions 147\n5.2.3 Nested Procedure Calls 148\n5.2.4 Passing Register Arguments to Procedures 150\n5.2.5 Example: Summing an Integer Array 150\n5.2.6 Saving and Restoring Registers 152\n5.2.7 Section Review 153\n5.3 Linking to an External Library 153\n5.3.1 Background Information 154\n5.3.2 Section Review 155\n5.4 The Irvine32 Library 155\n5.4.1 Motivation for Creating the Library 155\n5.4.2 Overview 157\n5.4.3 Individual Procedure Descriptions 158\n5.4.4 Library Test Programs 170\n5.4.5 Section Review 178\n5.5 64-Bit Assembly Programming 178\n5.5.1 The Irvine64 Library 178\n5.5.2 Calling 64-Bit Subroutines 179\n5.5.3 The x64 Calling Convention 179\n5.5.4 Sample Program that Calls a Procedure 180\n5.6 Chapter Summary 182\n5.7 Key Terms 183\n5.7.1 Terms 183\n5.7.2 Instructions, Operators, and Directives 183\n5.8 Review Questions and Exercises 183\n5.8.1 Short Answer 183\n5.8.2 Algorithm Workbench 186\n5.9 Programming Exercises 187\n6 Conditional Processing 189\n6.1 Conditional Branching 190\n6.2 Boolean and Comparison Instructions 190\n6.2.1 The CPU Status Flags 191\n6.2.2 AND Instruction 191\n6.2.3 OR Instruction 192\n6.2.4 Bit-Mapped Sets 194\n6.2.5 XOR Instruction 195\n6.2.6 NOT Instruction 196\n6.2.7 TEST Instruction 196\n6.2.8 CMP Instruction 197\n6.2.9 Setting and Clearing Individual CPU Flags 198\n6.2.10 Boolean Instructions in 64-Bit Mode 199\n6.2.11 Section Review 199\n6.3 Conditional Jumps 199\n6.3.1 Conditional Structures 199\n6.3.2 J cond Instruction 200\n6.3.3 Types of Conditional Jump Instructions 201\n6.3.4 Conditional Jump Applications 204\n6.3.5 Section Review 208\n6.4 Conditional Loop Instructions 209\n6.4.1 LOOPZ and LOOPE Instructions 209\n6.4.2 LOOPNZ and LOOPNE Instructions 209\n6.4.3 Section Review 210\n6.5 Conditional Structures 210\n6.5.1 Block-Structured IF Statements 210\n6.5.2 Compound Expressions 213\n6.5.3 WHILE Loops 214\n6.5.4 Table-Driven Selection 216\n6.5.5 Section Review 219\n6.6 Application: Finite-State Machines 219\n6.6.1 Validating an Input String 219\n6.6.2 Validating a Signed Integer 220\n6.6.3 Section Review 224\n6.7 Conditional Control Flow Directives 225\n6.7.1 Creating IF Statements 226\n6.7.2 Signed and Unsigned Comparisons 227\n6.7.3 Compound Expressions 228\n6.7.4 Creating Loops with .REPEAT and .WHILE 231\n6.8 Chapter Summary 232\n6.9 Key Terms 233\n6.9.1 Terms 233\n6.9.2 Instructions, Operators, and Directives 234\n6.10 Review Questions and Exercises 234\n6.10.1 Short Answer 234\n6.10.2 Algorithm Workbench 236\n6.11 Programming Exercises 237\n6.11.1 Suggestions for Testing Your Code 237\n6.11.2 Exercise Descriptions 238\n7 Integer Arithmetic 242\n7.1 Shift and Rotate Instructions 243\n7.1.1 Logical Shifts and Arithmetic Shifts 243\n7.1.2 SHL Instruction 244\n7.1.3 SHR Instruction 245\n7.1.4 SAL and SAR Instructions 246\n7.1.5 ROL Instruction 247\n7.1.6 ROR Instruction 247\n7.1.7 RCL and RCR Instructions 248\n7.1.8 Signed Overflow 249\n7.1.9 SHLD/SHRD Instructions 249\n7.1.10 Section Review 251\n7.2 Shift and Rotate Applications 251\n7.2.1 Shifting Multiple Doublewords 252\n7.2.2 Binary Multiplication 253\n7.2.3 Displaying Binary Bits 254\n7.2.4 Extracting File Date Fields 254\n7.2.5 Section Review 255\n7.3 Multiplication and Division Instructions 255\n7.3.1 MUL Instruction 255\n7.3.2 IMUL Instruction 257\n7.3.3 Measuring Program Execution Times 260\n7.3.4 DIV Instruction 262\n7.3.5 Signed Integer Division 264\n7.3.6 Implementing Arithmetic Expressions 267\n7.3.7 Section Review 269\n7.4 Extended Addition and Subtraction 269\n7.4.1 ADC Instruction 269\n7.4.2 Extended Addition Example 270\n7.4.3 SBB Instruction 272\n7.4.4 Section Review 272\n7.5 ASCII and Unpacked Decimal Arithmetic 273\n7.5.1 AAA Instruction 274\n7.5.2 AAS Instruction 276\n7.5.3 AAM Instruction 276\n7.5.4 AAD Instruction 276\n7.5.5 Section Review 277\n7.6 Packed Decimal Arithmetic 277\n7.6.1 DAA Instruction 277\n7.6.2 DAS Instruction 279\n7.6.3 Section Review 279\n7.7 Chapter Summary 279\n7.8 Key Terms 280\n7.8.1 Terms 280\n7.8.2 Instructions, Operators, and Directives 280\n7.9 Review Questions and Exercises 281\n7.9.1 Short Answer 281\n7.9.2 Algorithm Workbench 282\n7.10 Programming Exercises 284\n8 Advanced Procedures 286\n8.1 Introduction 287\n8.2 Stack Frames 287\n8.2.1 Stack Parameters 288\n8.2.2 Disadvantages of Register Parameters 288\n8.2.3 Accessing Stack Parameters 290\n8.2.4 32-Bit Calling Conventions 293\n8.2.5 Local Variables 295\n8.2.6 Reference Parameters 297\n8.2.7 LEA Instruction 298\n8.2.8 ENTER and LEAVE Instructions 298\n8.2.9 LOCAL Directive 300\n8.2.10 The Microsoft x64 Calling Convention 301\n8.2.11 Section Review 302\n8.3 Recursion 302\n8.3.1 Recursively Calculating a Sum 303\n8.3.2 Calculating a Factorial 304\n8.3.3 Section Review 311\n8.4 INVOKE, ADDR, PROC, and PROTO 311\n8.4.1 INVOKE Directive 311\n8.4.2 ADDR Operator 312\n8.4.3 PROC Directive 313\n8.4.4 PROTO Directive 316\n8.4.5 Parameter Classifications 319\n8.4.6 Example: Exchanging Two Integers 320\n8.4.7 Debugging Tips 321\n8.4.8 WriteStackFrame Procedure 322\n8.4.9 Section Review 323\n8.5 Creating Multimodule Programs 323\n8.5.1 Hiding and Exporting Procedure Names 323\n8.5.2 Calling External Procedures 324\n8.5.3 Using Variables and Symbols across Module Boundaries 325\n8.5.4 Example: ArraySum Program 326\n8.5.5 Creating the Modules Using Extern 326\n8.5.6 Creating the Modules Using INVOKE and PROTO 330\n8.5.7 Section Review 333\n8.6 Advanced Use of Parameters (Optional Topic) 333\n8.6.1 Stack Affected by the USES Operator 333\n8.6.2 Passing 8-Bit and 16-Bit Arguments on the Stack 335\n8.6.3 Passing 64-Bit Arguments 336\n8.6.4 Non-Doubleword Local Variables 337\n8.7 Java Bytecodes (Optional Topic) 339\n8.7.1 Java Virtual Machine 339\n8.7.2 Instruction Set 340\n8.7.3 Java Disassembly Examples 341\n8.7.4 Example: Conditional Branch 344\n8.8 Chapter Summary 346\n8.9 Key Terms 347\n8.9.1 Terms 347\n8.9.2 Instructions, Operators, and Directives 348\n8.10 Review Questions and Exercises 348\n8.10.1 Short Answer 348\n8.10.2 Algorithm Workbench 348\n8.11 Programming Exercises 349\n9 Strings and Arrays 352\n9.1 Introduction 352\n9.2 String Primitive Instructions 353\n9.2.1 MOVSB, MOVSW, and MOVSD 354\n9.2.2 CMPSB, CMPSW, and CMPSD 355\n9.2.3 SCASB, SCASW, and SCASD 356\n9.2.4 STOSB, STOSW, and STOSD 356\n9.2.5 LODSB, LODSW, and LODSD 356\n9.2.6 Section Review 357\n9.3 Selected String Procedures 357\n9.3.1 Str_compare Procedure 358\n9.3.2 Str_length Procedure 359\n9.3.3 Str_copy Procedure 359\n9.3.4 Str_trim Procedure 360\n9.3.5 Str_ucase Procedure 363\n9.3.6 String Library Demo Program 364\n9.3.7 String Procedures in the Irvine64 Library 365\n9.3.8 Section Review 368\n9.4 Two-Dimensional Arrays 368\n9.4.1 Ordering of Rows and Columns 368\n9.4.2 Base-Index Operands 369\n9.4.3 Base-Index-Displacement Operands 371\n9.4.4 Base-Index Operands in 64-Bit Mode 372\n9.4.5 Section Review 373\n9.5 Searching and Sorting Integer Arrays 373\n9.5.1 Bubble Sort 373\n9.5.2 Binary Search 375\n9.5.3 Section Review 382\n9.6 Java Bytecodes: String Processing (Optional Topic) 382\n9.7 Chapter Summary 383\n9.8 Key Terms and Instructions 384\n9.9 Review Questions and Exercises 384\n9.9.1 Short Answer 384\n9.9.2 Algorithm Workbench 385\n9.10 Programming Exercises 386\n10 Structures and Macros 390\n10.1 Structures 390\n10.1.1 Defining Structures 391\n10.1.2 Declaring Structure Variables 393\n10.1.3 Referencing Structure Variables 394\n10.1.4 Example: Displaying the System Time 397\n10.1.5 Structures Containing Structures 399\n10.1.6 Example: Drunkard’s Walk 399\n10.1.7 Declaring and Using Unions 403\n10.1.8 Section Review 405\n10.2 Macros 405\n10.2.1 Overview 405\n10.2.2 Defining Macros 406\n10.2.3 Invoking Macros 407\n10.2.4 Additional Macro Features 408\n10.2.5 Using the Book’s Macro Library (32-bit mode only) 412\n10.2.6 Example Program: Wrappers 419\n10.2.7 Section Review 420\n10.3 Conditional-Assembly Directives 420\n10.3.1 Checking for Missing Arguments 421\n10.3.2 Default Argument Initializers 422\n10.3.3 Boolean Expressions 423\n10.3.4 IF, ELSE, and ENDIF Directives 423\n10.3.5 The IFIDN and IFIDNI Directives 424\n10.3.6 Example: Summing a Matrix Row 425\n10.3.7 Special Operators 428\n10.3.8 Macro Functions 431\n10.3.9 Section Review 433\n10.4 Defining Repeat Blocks 433\n10.4.1 WHILE Directive 433\n10.4.2 REPEAT Directive 434\n10.4.3 FOR Directive 434\n10.4.4 FORC Directive 435\n10.4.5 Example: Linked List 436\n10.4.6 Section Review 437\n10.5 Chapter Summary 438\n10.6 Key Terms 439\n10.6.1 Terms 439\n10.6.2 Operators and Directives 439\n10.7 Review Questions and Exercises 440\n10.7.1 Short Answer 440\n10.7.2 Algorithm Workbench 440\n10.8 Programming Exercises 442\n11 MS-Windows Programming 445\n11.1 Win32 Console Programming 445\n11.1.1 Background Information 446\n11.1.2 Win32 Console Functions 450\n11.1.3 Displaying a Message Box 452\n11.1.4 Console Input 455\n11.1.5 Console Output 461\n11.1.6 Reading and Writing Files 463\n11.1.7 File I/O in the Irvine32 Library 468\n11.1.8 Testing the File I/O Procedures 470\n11.1.9 Console Window Manipulation 473\n11.1.10 Controlling the Cursor 476\n11.1.11 Controlling the Text Color 477\n11.1.12 Time and Date Functions 479\n11.1.13 Using the 64-Bit Windows API 482\n11.1.14 Section Review 484\n11.2 Writing a Graphical Windows Application 484\n11.2.1 Necessary Structures 484\n11.2.2 The MessageBox Function 486\n11.2.3 The WinMain Procedure 486\n11.2.4 The WinProc Procedure 487\n11.2.5 The ErrorHandler Procedure 488\n11.2.6 Program Listing 488\n11.2.7 Section Review 492\n11.3 Dynamic Memory Allocation 492\n11.3.1 HeapTest Programs 496\n11.3.2 Section Review 499\n11.4 x86 Memory Management 499\n11.4.1 Linear Addresses 500\n11.4.2 Page Translation 503\n11.4.3 Section Review 505\n11.5 Chapter Summary 505\n11.6 Key Terms 507\n11.7 Review Questions and Exercises 507\n11.7.1 Short Answer 507\n11.7.2 Algorithm Workbench 508\n11.8 Programming Exercises 509\n12 Floating-Point Processing and Instruction Encoding 511\n12.1 Floating-Point Binary Representation 511\n12.1.1 IEEE Binary Floating-Point Representation 512\n12.1.2 The Exponent 514\n12.1.3 Normalized Binary Floating-Point Numbers 514\n12.1.4 Creating the IEEE Representation 514\n12.1.5 Converting Decimal Fractions to Binary Reals 516\n12.1.6 Section Review 518\n12.2 Floating-Point Unit 518\n12.2.1 FPU Register Stack 519\n12.2.2 Rounding 521\n12.2.3 Floating-Point Exceptions 523\n12.2.4 Floating-Point Instruction Set 523\n12.2.5 Arithmetic Instructions 526\n12.2.6 Comparing Floating-Point Values 530\n12.2.7 Reading and Writing Floating-Point Values 533\n12.2.8 Exception Synchronization 534\n12.2.9 Code Examples 535\n12.2.10 Mixed-Mode Arithmetic 537\n12.2.11 Masking and Unmasking Exceptions 538\n12.2.12 Section Review 539\n12.3 x86 Instruction Encoding 539\n12.3.1 Instruction Format 540\n12.3.2 Single-Byte Instructions 541\n12.3.3 Move Immediate to Register 541\n12.3.4 Register-Mode Instructions 542\n12.3.5 Processor Operand-Size Prefix 543\n12.3.6 Memory-Mode Instructions 544\n12.3.7 Section Review 547\n12.4 Chapter Summary 547\n12.5 Key Terms 549\n12.6 Review Questions and Exercises 549\n12.6.1 Short Answer 549\n12.6.2 Algorithm Workbench 550\n12.7 Programming Exercises 551\n13 High-Level Language Interface 555\n13.1 Introduction 555\n13.1.1 General Conventions 556\n13.1.2 .MODEL Directive 557\n13.1.3 Examining Compiler-Generated Code 559\n13.1.4 Section Review 564\n13.2 Inline Assembly Code 564\n13.2.1 __asm Directive in Visual C++ 564\n13.2.2 File Encryption Example 566\n13.2.3 Section Review 569\n13.3 Linking 32-Bit Assembly Language Code to C/C++ 570\n13.3.1 IndexOf Example 570\n13.3.2 Calling C and C++ Functions 574\n13.3.3 Multiplication Table Example 576\n13.3.4 Calling C Library Functions 579\n13.3.5 Directory Listing Program 582\n13.3.6 Section Review 583\n13.4 Chapter Summary 583\n13.5 Key Terms 584\n13.6 Review Questions 584\n13.7 Programming Exercises 585\nChapters 14-17 are available on the Companion Web site\n14 16-Bit MS-DOS Programming 14.1\n14.1 MS-DOS and the IBM-PC 14.1\n14.1.1 Memory Organization 14.2\n14.1.2 Redirecting Input-Output 14.3\n14.1.3 Software Interrupts 14.4\n14.1.4 INT Instruction 14.5\n14.1.5 Coding for 16-Bit Programs 14.6\n14.1.6 Section Review 14.7\n14.2 MS-DOS Function Calls (INT 21h) 14.7\n14.2.1 Selected Output Functions 14.9\n14.2.2 Hello World Program Example 14.11\n14.2.3 Selected Input Functions 14.12\n14.2.4 Date/Time Functions 14.16\n14.2.5 Section Review 14.20\n14.3 Standard MS-DOS File I/O Services 14.20\n14.3.1 Create or Open File (716Ch) 14.22\n14.3.2 Close File Handle (3Eh) 14.23\n14.3.3 Move File Pointer (42h) 14.23\n14.3.4 Get File Creation Date and Time 14.24\n14.3.5 Selected Library Procedures 14.24\n14.3.6 Example: Read and Copy a Text File 14.25\n14.3.7 Reading the MS-DOS Command Tail 14.27\n14.3.8 Example: Creating a Binary File 14.30\n14.3.9 Section Review 14.33\n14.4 Chapter Summary 14.33\n14.5 Programming Exercises 14.35\n15 Disk Fundamentals 15.1\n15.1 Disk Storage Systems 15.1\n15.1.1 Tracks, Cylinders, and Sectors 15.2\n15.1.2 Disk Partitions (Volumes) 15.4\n15.1.3 Section Review 15.4\n15.2 File Systems 15.5\n15.2.1 FAT12 15.6\n15.2.2 FAT16 15.6\n15.2.3 FAT32 15.6\n15.2.4 NTFS 15.7\n15.2.5 Primary Disk Areas 15.7\n15.2.6 Section Review 15.8\n15.3 Disk Directory 15.9\n15.3.1 MS-DOS Directory Structure 15.10\n15.3.2 Long Filenames in MS-Windows 15.12\n15.3.3 File Allocation Table (FAT) 15.14\n15.3.4 Section Review 15.14\n15.4 Reading and Writing Disk Sectors 15.15\n15.4.1 Sector Display Program 15.16\n15.4.2 Section Review 15.19\n15.5 System-Level File Functions 15.20\n15.5.1 Get Disk Free Space (7303h) 15.20\n15.5.2 Create Subdirectory (39h) 15.23\n15.5.3 Remove Subdirectory (3Ah) 15.23\n15.5.4 Set Current Directory (3Bh) 15.23\n15.5.5 Get Current Directory (47h) 15.24\n15.5.6 Get and Set File Attributes (7143h) 15.24\n15.5.7 Section Review 15.25\n15.6 Chapter Summary 15.25\n15.7 Programming Exercises 15.26\n16 BIOS-Level Programming 16.1\n16.1 Introduction 16.1\n16.1.1 BIOS Data Area 16.2\n16.2 Keyboard Input with INT 16h 16.3\n16.2.1 How the Keyboard Works 16.3\n16.2.2 INT 16h Functions 16.4\n16.2.3 Section Review 16.8\n16.3 VIDEO Programming with INT 10h 16.8\n16.3.1 Basic Background 16.8\n16.3.2 Controlling the Color 16.10\n16.3.3 INT 10h Video Functions 16.12\n16.3.4 Library Procedure Examples 16.22\n16.3.5 Section Review 16.23\n16.4 Drawing Graphics Using INT 10h 16.23\n16.4.1 INT 10h Pixel-Related Functions 16.24\n16.4.2 DrawLine Program 16.25\n16.4.3 Cartesian Coordinates Program 16.27\n16.4.4 Converting Cartesian Coordinates to Screen Coordinates 16.29\n16.4.5 Section Review 16.30\n16.5 Memory-Mapped Graphics 16.30\n16.5.1 Mode 13h: 320 X 200, 256 Colors 16.30\n16.5.2 Memory-Mapped Graphics Program 16.32\n16.5.3 Section Review 16.34\n16.6 Mouse Programming 16.35\n16.6.1 Mouse INT 33h Functions 16.35\n16.6.2 Mouse Tracking Program 16.40\n16.6.3 Section Review 16.44\n16.7 Chapter Summary 16.45\n16.8 Programming Exercises 16.46\n17 Expert MS-DOS Programming 17.1\n17.1 Introduction 17.1\n17.2 Defining Segments 17.2\n17.2.1 Simplified Segment Directives 17.2\n17.2.2 Explicit Segment Definitions 17.4\n17.2.3 Segment Overrides 17.7\n17.2.4 Combining Segments 17.7\n17.2.5 Section Review 17.9\n17.3 Runtime Program Structure 17.9\n17.3.1 Program Segment Prefix 17.10\n17.3.2 COM Programs 17.10\n17.3.3 EXE Programs 17.11\n17.3.4 Section Review 17.13\n17.4 Interrupt Handling 17.13\n17.4.1 Hardware Interrupts 17.14\n17.4.2 Interrupt Control Instructions 17.16\n17.4.3 Writing a Custom Interrupt Handler 17.16\n17.4.4 Terminate and Stay Resident Programs 17.19\n17.4.5 Application: The No_Reset Program 17.19\n17.4.6 Section Review 17.23\n17.5 Hardware Control Using I/O Ports 17.23\n17.5.1 Input—Output Ports 17.24\n17.5.2 PC Sound Program 17.24\n17.6 Chapter Summary 17.26\nAppendix A MASM Reference 587\nAppendix B The x86 Instruction Set 609\nAppendix C Answers to Section Review\nQuestions 644\nAppendices D-E are available on the Companion Web site\nAppendix D BIOS and MS-DOS Interrupts D.1\nAppendix E Answers to Review Questions (Chapters 14—17) E.1\nIndex 664\nFree Sample Test Bank for Assembly Language for x86 Processors 7th Edition Kip Irvine\nFor customer’s satisfaction, we provide free samples for any required Textbook solution or test bank to check and evaluate before making the final purchase..\nIf you require any further information, let me know. using Live Chat or Contact Us\nTest Bank for Assembly Language for x86 Processors 7th Edition Kip Irvine

Dive into ebooks: A world of convenience at your fingertips

Ebooks offer a treasure trove of benefits for bookworms of all stripes. Let's explore why ebooks might be your new favorite way to read:


Carry an entire library in your pocket! Ebooks can be accessed from anywhere using your favorite device, be it an ereader, smartphone, tablet, or computer. No more lugging around heavy books –– ebooks make reading on the go a breeze.


Forget waiting for deliveries or trips to the bookstore. Ebooks can be purchased and downloaded in a flash, letting you delve into your next great read right away. Convenience at its finest!


Ebooks eliminate the need for physical bookshelves, freeing up space in your home. Plus, they're eco-friendly, reducing paper consumption and the environmental impact of traditional books.


Ebooks cater to your preferences. Adjust font sizes for better readability, highlight key passages for easy reference, and jump to specific sections with the built-in search function. It's all about creating a personalized reading experience that optimizes your enjoyment.


Ebooks can be gentler on your wallet compared to printed books. Many platforms offer a vast selection of free ebooks, allowing you to explore new genres and authors without breaking the bank.

Instant Gratification with Ebooks: Download and Dive In!

Forget waiting for deliveries! Ebooks offer instant gratification. Upon completing your purchase, you'll receive your ebook directly within your email inbox within 0-6 hours. No waiting times, just pure reading pleasure.

Your Satisfaction Matters: Hassle-Free Ebook Returns

We at Ebooks are dedicated to your satisfaction. If, for any reason, you're not happy with your ebook purchase, we offer a convenient return policy. Most digital purchases can be refunded within 30 days of delivery. Simply reach out to our friendly customer support team if you encounter any issues or the ebook doesn't meet your expectations.

Since ebooks are digital, returns aren't handled in the traditional way. However, your satisfaction remains our top priority. Our team will work diligently with you to find a solution or promptly process a refund to your original payment method. We want you to have a positive experience, and your happiness is what truly matters to us.

Recently Viewed Products