├── .gitattributes ├── 978-1-4842-9152-8.jpg ├── Chapter10 └── LocalVariables.cpp ├── Chapter11 ├── Arithmetic.cpp └── FunctionParameters.cpp ├── Chapter13 ├── Arithmetic.cpp ├── Arithmetic.h └── FunctionParameters.cpp ├── Chapter2 └── ArithmeticProjectC.cpp ├── Chapter4 └── PointersProject.asm ├── Chapter6 └── MemoryPointers.asm ├── Chapter8 └── PointersAsVariables.cpp ├── Chapter9 ├── SimpleStack.c ├── func.c ├── func2.c └── func3.c ├── Contributing.md ├── LICENSE.txt ├── README.md └── errata.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/linux-debugging-disassembling-reversing/HEAD/.gitattributes -------------------------------------------------------------------------------- /978-1-4842-9152-8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/linux-debugging-disassembling-reversing/HEAD/978-1-4842-9152-8.jpg -------------------------------------------------------------------------------- /Chapter10/LocalVariables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/linux-debugging-disassembling-reversing/HEAD/Chapter10/LocalVariables.cpp -------------------------------------------------------------------------------- /Chapter11/Arithmetic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/linux-debugging-disassembling-reversing/HEAD/Chapter11/Arithmetic.cpp -------------------------------------------------------------------------------- /Chapter11/FunctionParameters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/linux-debugging-disassembling-reversing/HEAD/Chapter11/FunctionParameters.cpp -------------------------------------------------------------------------------- /Chapter13/Arithmetic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/linux-debugging-disassembling-reversing/HEAD/Chapter13/Arithmetic.cpp -------------------------------------------------------------------------------- /Chapter13/Arithmetic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/linux-debugging-disassembling-reversing/HEAD/Chapter13/Arithmetic.h -------------------------------------------------------------------------------- /Chapter13/FunctionParameters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/linux-debugging-disassembling-reversing/HEAD/Chapter13/FunctionParameters.cpp -------------------------------------------------------------------------------- /Chapter2/ArithmeticProjectC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/linux-debugging-disassembling-reversing/HEAD/Chapter2/ArithmeticProjectC.cpp -------------------------------------------------------------------------------- /Chapter4/PointersProject.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/linux-debugging-disassembling-reversing/HEAD/Chapter4/PointersProject.asm -------------------------------------------------------------------------------- /Chapter6/MemoryPointers.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/linux-debugging-disassembling-reversing/HEAD/Chapter6/MemoryPointers.asm -------------------------------------------------------------------------------- /Chapter8/PointersAsVariables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/linux-debugging-disassembling-reversing/HEAD/Chapter8/PointersAsVariables.cpp -------------------------------------------------------------------------------- /Chapter9/SimpleStack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/linux-debugging-disassembling-reversing/HEAD/Chapter9/SimpleStack.c -------------------------------------------------------------------------------- /Chapter9/func.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/linux-debugging-disassembling-reversing/HEAD/Chapter9/func.c -------------------------------------------------------------------------------- /Chapter9/func2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/linux-debugging-disassembling-reversing/HEAD/Chapter9/func2.c -------------------------------------------------------------------------------- /Chapter9/func3.c: -------------------------------------------------------------------------------- 1 | void func3() 2 | { 3 | __asm__ volatile("int $0x03"); 4 | } 5 | 6 | -------------------------------------------------------------------------------- /Contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/linux-debugging-disassembling-reversing/HEAD/Contributing.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/linux-debugging-disassembling-reversing/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/linux-debugging-disassembling-reversing/HEAD/README.md -------------------------------------------------------------------------------- /errata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/linux-debugging-disassembling-reversing/HEAD/errata.md --------------------------------------------------------------------------------