WILEY

Publishers since 1807

Wiley - Publishers Since 1807

United States Change Location

cart.gif CART |  MY ACCOUNT |  CONTACT US |  HELP    
Cover image for product 0764579010
Professional Assembly Language
ISBN: 978-0-7645-7901-1
Paperback
576 pages
February 2005
US $39.99 Add to Cart

This price is valid for United States. Change location to view local pricing and availability.

Other Available Formats: Adobe E-Book
  • Description
  • Table of Contents
  • Author Information
  • Errata
  • Download

Do you think you've discovered an error in this book? Please check the list of errata below to see if we've already addressed the error. If not, please submit the error via our Errata Form. We will attempt to verify your error; if you're right, we will post a correction below.

ChapterPageDetailsDatePrint Run
104 Error in Code
the last line of code at the bottom of page:
movl %edx, -4(&edi)

Should be:
movl %edx, -4(%edi)
10/01/06
106 Error in Code
bottom of page code:

dec %ecx
jz continue
movl $0, %ecx
continue:

should be:

inc %ecx
jnc continue
movl $0, %ecx
continue:
06/04/07
303 Error in Code
Page 303, code at the top of the page:

code reads:

filds value
fmulp %st(0), %st(1)

ret

should be:

filds value
fmulp %st(0), %st(1)
fstps %eax
ret
07/27/2006