Learn assembly language, and you learn the machineIn this third edition of his bestselling guide to Intel x86 assembly language under Linux, Jeff Duntemann positions assembly not as unapproachable geek arcana but as a first programming language, suitable for readers who have no previous programming experience. As the fundamental language of the CPU, assembly lays the groundwork for all other programming languages, especially native-code C, C , and Pascal. By mastering assembly,
Learn assembly language, and you learn the machineIn this third edition of his bestselling guide to Intel x86 assembly language under Linux, Jeff Duntemann positions assembly not as unapproachable geek arcana but as a first programming language, suitable for readers who have no previous programming experience. As the fundamental language of the CPU, assembly lays the groundwork for all other programming languages, especially native-code C, C , and Pascal. By mastering assembly, programmers will learn how x86 computers operate all the way down to "the bare silicon," at a level of detail that no other approach can equal.Assembly Language Step by Step, Third Edition, helps you:Review the fundamental concepts behind computing and programming, including the hexadecimal and binary number basesUnderstand the evolution of the Intel CPUs and how modern x86 processors operateGrasp the process of programming itself, from editing source code through assembly, linking, and debuggingComprehend x86 32-bit protected-mode memory addressingLearn the x86 instruction set by dissecting numerous complete example programsWork with the wealth of free programming utilities under Ubuntu Linux, including the Kate editor, the NASM assembler, and the GNU toolsetMaster practical details of Linux programming, including procedures, macros, the INT 80h call gate, and calls to the standard C libraries
This is a very good introductory book on IA-32 Assembly programming on Linux (well, Ubuntu distro specifically but adaptable to other distros too). Uses NASM and a stack of tools that are likely available for all distros (but again definitely if you have an Ubuntu variant).If you're really ready to take your time and are shooting for a well-grounded point of departure than this book is for you. If you've already mastered things like IA-32 architecture,..