├── .gitattributes ├── 9781484240625.jpg ├── Chapter02 ├── Ch02_01 │ ├── Ch02_01.cpp │ ├── Ch02_01.vcxproj │ ├── Ch02_01.vcxproj.filters │ ├── Ch02_01.vcxproj.user │ ├── Ch02_01_.asm │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── Ch02_02 │ ├── Ch02_02.cpp │ ├── Ch02_02.vcxproj │ ├── Ch02_02.vcxproj.filters │ ├── Ch02_02.vcxproj.user │ ├── Ch02_02_.asm │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── Ch02_03 │ ├── Ch02_03.cpp │ ├── Ch02_03.vcxproj │ ├── Ch02_03.vcxproj.filters │ ├── Ch02_03.vcxproj.user │ ├── Ch02_03_.asm │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── Ch02_04 │ ├── Ch02_04.cpp │ ├── Ch02_04.vcxproj │ ├── Ch02_04.vcxproj.filters │ ├── Ch02_04.vcxproj.user │ ├── Ch02_04_.asm │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── Ch02_05 │ ├── Ch02_05.cpp │ ├── Ch02_05.vcxproj │ ├── Ch02_05.vcxproj.filters │ ├── Ch02_05.vcxproj.user │ ├── Ch02_05_.asm │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── Ch02_06 │ ├── Ch02_06.cpp │ ├── Ch02_06.vcxproj │ ├── Ch02_06.vcxproj.filters │ ├── Ch02_06.vcxproj.user │ ├── Ch02_06_.asm │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── Ch02_07 │ ├── Ch02_07.cpp │ ├── Ch02_07.vcxproj │ ├── Ch02_07.vcxproj.filters │ ├── Ch02_07.vcxproj.user │ ├── Ch02_07_.asm │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h └── Chapter02.sln ├── Chapter03 ├── Ch03_01 │ ├── Ch03_01.cpp │ ├── Ch03_01.vcxproj │ ├── Ch03_01.vcxproj.filters │ ├── Ch03_01.vcxproj.user │ ├── Ch03_01_.asm │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── Ch03_02 │ ├── Ch03_02.cpp │ ├── Ch03_02.vcxproj │ ├── Ch03_02.vcxproj.filters │ ├── Ch03_02.vcxproj.user │ ├── Ch03_02_.asm │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── Ch03_03 │ ├── Ch03_03.cpp │ ├── Ch03_03.vcxproj │ ├── Ch03_03.vcxproj.filters │ ├── Ch03_03.vcxproj.user │ ├── Ch03_03_.asm │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── Ch03_04 │ ├── Ch03_04.cpp │ ├── Ch03_04.vcxproj │ ├── Ch03_04.vcxproj.filters │ ├── Ch03_04.vcxproj.user │ ├── Ch03_04_.asm │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── Ch03_05 │ ├── Ch03_05.cpp │ ├── Ch03_05.vcxproj │ ├── Ch03_05.vcxproj.filters │ ├── Ch03_05.vcxproj.user │ ├── Ch03_05_.asm │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── Ch03_06 │ ├── Ch03_06.cpp │ ├── Ch03_06.vcxproj │ ├── Ch03_06.vcxproj.filters │ ├── Ch03_06.vcxproj.user │ ├── Ch03_06_.asm │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── Ch03_07 │ ├── Ch03_07.cpp │ ├── Ch03_07.vcxproj │ ├── Ch03_07.vcxproj.filters │ ├── Ch03_07.vcxproj.user │ ├── Ch03_07_.asm │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── Ch03_08 │ ├── Ch03_08.cpp │ ├── Ch03_08.vcxproj │ ├── Ch03_08.vcxproj.filters │ ├── Ch03_08.vcxproj.user │ ├── Ch03_08_.asm │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── Ch03_09 │ ├── Ch03_09.cpp │ ├── Ch03_09.vcxproj │ ├── Ch03_09.vcxproj.filters │ ├── Ch03_09.vcxproj.user │ ├── Ch03_09_.asm │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h └── Chapter03.sln ├── Chapter05 ├── Ch05_01 │ ├── Ch05_01.cpp │ ├── Ch05_01.vcxproj │ ├── Ch05_01.vcxproj.filters │ ├── Ch05_01.vcxproj.user │ ├── Ch05_01_.asm │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── Ch05_02 │ ├── Ch05_02.cpp │ ├── Ch05_02.vcxproj │ ├── Ch05_02.vcxproj.filters │ ├── Ch05_02.vcxproj.user │ ├── Ch05_02_.asm │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── Ch05_03 │ ├── Ch05_03.cpp │ ├── Ch05_03.vcxproj │ ├── Ch05_03.vcxproj.filters │ ├── Ch05_03.vcxproj.user │ ├── Ch05_03_.asm │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── Ch05_04 │ ├── Ch05_04.cpp │ ├── Ch05_04.vcxproj │ ├── Ch05_04.vcxproj.filters │ ├── Ch05_04.vcxproj.user │ ├── Ch05_04_.asm │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── Ch05_05 │ ├── Ch05_05.cpp │ ├── Ch05_05.vcxproj │ ├── Ch05_05.vcxproj.filters │ ├── Ch05_05.vcxproj.user │ ├── Ch05_05_.asm │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── Ch05_06 │ ├── Ch05_06.cpp │ ├── Ch05_06.vcxproj │ ├── Ch05_06.vcxproj.filters │ ├── Ch05_06.vcxproj.user │ ├── Ch05_06_.asm │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── Ch05_07 │ ├── Ch05_07.cpp │ ├── Ch05_07.vcxproj │ ├── Ch05_07.vcxproj.filters │ ├── Ch05_07.vcxproj.user │ ├── Ch05_07_.asm │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── Ch05_08 │ ├── Ch05_08.cpp │ ├── Ch05_08.vcxproj │ ├── Ch05_08.vcxproj.filters │ ├── Ch05_08.vcxproj.user │ ├── Ch05_08_.asm │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── Ch05_09 │ ├── Ch05_09.cpp │ ├── Ch05_09.vcxproj │ ├── Ch05_09.vcxproj.filters │ ├── Ch05_09.vcxproj.user │ ├── Ch05_09_.asm │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── Ch05_10 │ ├── Ch05_10.cpp │ ├── Ch05_10.vcxproj │ ├── Ch05_10.vcxproj.filters │ ├── Ch05_10.vcxproj.user │ ├── Ch05_10_.asm │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── Ch05_11 │ ├── Ch05_11.cpp │ ├── Ch05_11.vcxproj │ ├── Ch05_11.vcxproj.filters │ ├── Ch05_11.vcxproj.user │ ├── Ch05_11_.asm │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── Ch05_12 │ ├── Ch05_12.cpp │ ├── Ch05_12.vcxproj │ ├── Ch05_12.vcxproj.filters │ ├── Ch05_12.vcxproj.user │ ├── Ch05_12_.asm │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── Ch05_Include │ ├── MacrosX86-64-AVX.asmh │ └── cmpequ.asmh └── Chapter05.sln ├── Chapter06 ├── Ch06_01 │ ├── Ch06_01.cpp │ ├── Ch06_01.vcxproj │ ├── Ch06_01.vcxproj.filters │ ├── Ch06_01.vcxproj.user │ ├── Ch06_01_.asm │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── Ch06_02 │ ├── Ch06_02.cpp │ ├── Ch06_02.vcxproj │ ├── Ch06_02.vcxproj.filters │ ├── Ch06_02.vcxproj.user │ ├── Ch06_02_.asm │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── Ch06_03 │ ├── Ch06_03.cpp │ ├── Ch06_03.vcxproj │ ├── Ch06_03.vcxproj.filters │ ├── Ch06_03.vcxproj.user │ ├── Ch06_03_.asm │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── Ch06_04 │ ├── Ch06_04.cpp │ ├── Ch06_04.vcxproj │ ├── Ch06_04.vcxproj.filters │ ├── Ch06_04.vcxproj.user │ ├── Ch06_04_.asm │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── Ch06_05 │ ├── Ch06_05.cpp │ ├── Ch06_05.vcxproj │ ├── Ch06_05.vcxproj.filters │ ├── Ch06_05.vcxproj.user │ ├── Ch06_05_.asm │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── Ch06_06 │ ├── Ch06_06.cpp │ ├── Ch06_06.vcxproj │ ├── Ch06_06.vcxproj.filters │ ├── Ch06_06.vcxproj.user │ ├── Ch06_06_.asm │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── Ch06_07 │ ├── Ch06_07.cpp │ ├── Ch06_07.h │ ├── Ch06_07.vcxproj │ ├── Ch06_07.vcxproj.filters │ ├── Ch06_07.vcxproj.user │ ├── Ch06_07_.asm │ ├── Ch06_07_BM.cpp │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── Ch06_08 │ ├── Ch06_08.cpp │ ├── Ch06_08.h │ ├── Ch06_08.vcxproj │ ├── Ch06_08.vcxproj.filters │ ├── Ch06_08.vcxproj.user │ ├── Ch06_08_.asm │ ├── Ch06_08_BM.cpp │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── Ch06_Include │ ├── AlignedMem.h │ ├── BmThreadTimer.h │ ├── ImageMatrix.h │ ├── MacrosX86-64-AVX.asmh │ ├── Matrix.h │ ├── OS.h │ ├── Vector.h │ ├── XmmVal.h │ ├── YmmVal.h │ ├── ZmmVal.h │ └── cmpequ.asmh ├── Chapter06.sln └── Important Source Code Notes.txt ├── Chapter07 ├── Ch07_01 │ ├── Ch07_01.cpp │ ├── Ch07_01.vcxproj │ ├── Ch07_01.vcxproj.filters │ ├── Ch07_01.vcxproj.user │ ├── Ch07_01_.asm │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── Ch07_02 │ ├── Ch07_02.cpp │ ├── Ch07_02.vcxproj │ ├── Ch07_02.vcxproj.filters │ ├── Ch07_02.vcxproj.user │ ├── Ch07_02_.asm │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── Ch07_03 │ ├── Ch07_03.cpp │ ├── Ch07_03.vcxproj │ ├── Ch07_03.vcxproj.filters │ ├── Ch07_03.vcxproj.user │ ├── Ch07_03_.asm │ ├── Ch07_03a.cpp │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── Ch07_04 │ ├── Ch07_04.cpp │ ├── Ch07_04.h │ ├── Ch07_04.vcxproj │ ├── Ch07_04.vcxproj.filters │ ├── Ch07_04.vcxproj.user │ ├── Ch07_04_.asm │ ├── Ch07_04_BM.cpp │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── Ch07_05 │ ├── Ch07_05.cpp │ ├── Ch07_05.h │ ├── Ch07_05.vcxproj │ ├── Ch07_05.vcxproj.filters │ ├── Ch07_05.vcxproj.user │ ├── Ch07_05_.asm │ ├── Ch07_05_BM.cpp │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── Ch07_06 │ ├── Ch07_06.cpp │ ├── Ch07_06.vcxproj │ ├── Ch07_06.vcxproj.filters │ ├── Ch07_06.vcxproj.user │ ├── Ch07_06_.asm │ ├── Ch07_06_Misc.cpp │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── Ch07_07 │ ├── Ch07_07.cpp │ ├── Ch07_07.h │ ├── Ch07_07.vcxproj │ ├── Ch07_07.vcxproj.filters │ ├── Ch07_07.vcxproj.user │ ├── Ch07_07_.asm │ ├── Ch07_07_BM.cpp │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── Ch07_08 │ ├── Ch07_08.cpp │ ├── Ch07_08.h │ ├── Ch07_08.vcxproj │ ├── Ch07_08.vcxproj.filters │ ├── Ch07_08.vcxproj.user │ ├── Ch07_08_.asm │ ├── Ch07_08_BM.cpp │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── Ch07_Data │ ├── TestImage1.bmp │ ├── TestImage2.bmp │ └── TestImage3.bmp ├── Ch07_Include │ ├── AlignedMem.h │ ├── BmThreadTimer.h │ ├── ImageMatrix.h │ ├── MacrosX86-64-AVX.asmh │ ├── Matrix.h │ ├── OS.h │ ├── Vector.h │ ├── XmmVal.h │ ├── YmmVal.h │ ├── ZmmVal.h │ └── cmpequ.asmh ├── Chapter07.sln └── Important Source Code Notes.txt ├── Chapter09 ├── Ch09_01 │ ├── Ch09_01.cpp │ ├── Ch09_01.vcxproj │ ├── Ch09_01.vcxproj.filters │ ├── Ch09_01.vcxproj.user │ ├── Ch09_01_.asm │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── Ch09_02 │ ├── Ch09_02.cpp │ ├── Ch09_02.vcxproj │ ├── Ch09_02.vcxproj.filters │ ├── Ch09_02.vcxproj.user │ ├── Ch09_02_.asm │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── Ch09_03 │ ├── Ch09_03.cpp │ ├── Ch09_03.vcxproj │ ├── Ch09_03.vcxproj.filters │ ├── Ch09_03.vcxproj.user │ ├── Ch09_03_.asm │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── Ch09_04 │ ├── Ch09_04.cpp │ ├── Ch09_04.vcxproj │ ├── Ch09_04.vcxproj.filters │ ├── Ch09_04.vcxproj.user │ ├── Ch09_04_.asm │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── Ch09_05 │ ├── Ch09_05.cpp │ ├── Ch09_05.h │ ├── Ch09_05.vcxproj │ ├── Ch09_05.vcxproj.filters │ ├── Ch09_05.vcxproj.user │ ├── Ch09_05_.asm │ ├── Ch09_05_BM.cpp │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── Ch09_06 │ ├── Ch09_06.cpp │ ├── Ch09_06.h │ ├── Ch09_06.vcxproj │ ├── Ch09_06.vcxproj.filters │ ├── Ch09_06.vcxproj.user │ ├── Ch09_06_.asm │ ├── Ch09_06_BM.cpp │ ├── Ch09_06_Test.cpp │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── Ch09_07 │ ├── Ch09_07.cpp │ ├── Ch09_07.vcxproj │ ├── Ch09_07.vcxproj.filters │ ├── Ch09_07.vcxproj.user │ ├── Ch09_07_.asm │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── Ch09_08 │ ├── Ch09_08.cpp │ ├── Ch09_08.vcxproj │ ├── Ch09_08.vcxproj.filters │ ├── Ch09_08.vcxproj.user │ ├── Ch09_08_.asm │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── Ch09_Include │ ├── AlignedMem.h │ ├── BmThreadTimer.h │ ├── ImageMatrix.h │ ├── MacrosX86-64-AVX.asmh │ ├── Matrix.h │ ├── OS.h │ ├── Vector.h │ ├── XmmVal.h │ ├── YmmVal.h │ ├── ZmmVal.h │ └── cmpequ.asmh ├── Chapter09.sln └── Important Source Code Notes.txt ├── Chapter10 ├── Ch10_01 │ ├── Ch10_01.cpp │ ├── Ch10_01.vcxproj │ ├── Ch10_01.vcxproj.filters │ ├── Ch10_01.vcxproj.user │ ├── Ch10_01_.asm │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── Ch10_02 │ ├── Ch10_02.cpp │ ├── Ch10_02.vcxproj │ ├── Ch10_02.vcxproj.filters │ ├── Ch10_02.vcxproj.user │ ├── Ch10_02_.asm │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── Ch10_03 │ ├── Ch10_03.cpp │ ├── Ch10_03.vcxproj │ ├── Ch10_03.vcxproj.filters │ ├── Ch10_03.vcxproj.user │ ├── Ch10_03_.asm │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── Ch10_04 │ ├── Ch10_04.cpp │ ├── Ch10_04.h │ ├── Ch10_04.vcxproj │ ├── Ch10_04.vcxproj.filters │ ├── Ch10_04.vcxproj.user │ ├── Ch10_04_.asm │ ├── Ch10_04_BM.cpp │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── Ch10_05 │ ├── Ch10_05.cpp │ ├── Ch10_05.vcxproj │ ├── Ch10_05.vcxproj.filters │ ├── Ch10_05.vcxproj.user │ ├── Ch10_05_.asm │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── Ch10_06 │ ├── Ch10_06.cpp │ ├── Ch10_06.h │ ├── Ch10_06.vcxproj │ ├── Ch10_06.vcxproj.filters │ ├── Ch10_06.vcxproj.user │ ├── Ch10_06_.asm │ ├── Ch10_06_BM.cpp │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── Ch10_Data │ ├── TestImage1.bmp │ ├── TestImage2.bmp │ └── TestImage3.bmp ├── Ch10_Include │ ├── AlignedMem.h │ ├── BmThreadTimer.h │ ├── ImageMatrix.h │ ├── MacrosX86-64-AVX.asmh │ ├── Matrix.h │ ├── OS.h │ ├── Vector.h │ ├── XmmVal.h │ ├── YmmVal.h │ ├── ZmmVal.h │ └── cmpequ.asmh ├── Chapter10.sln └── Important Source Code Notes.txt ├── Chapter11 ├── Ch11_01 │ ├── Ch11_01.cpp │ ├── Ch11_01.h │ ├── Ch11_01.vcxproj │ ├── Ch11_01.vcxproj.filters │ ├── Ch11_01.vcxproj.user │ ├── Ch11_01_.asm │ ├── Ch11_01_BM.cpp │ ├── Ch11_01_Misc.cpp │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── Ch11_02 │ ├── Ch11_02.cpp │ ├── Ch11_02.h │ ├── Ch11_02.vcxproj │ ├── Ch11_02.vcxproj.filters │ ├── Ch11_02.vcxproj.user │ ├── Ch11_02_.asm │ ├── Ch11_02_BM.cpp │ ├── Ch11_02_Misc.cpp │ ├── Ch11_02_Test_.asm │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── Ch11_03 │ ├── Ch11_03.cpp │ ├── Ch11_03.vcxproj │ ├── Ch11_03.vcxproj.filters │ ├── Ch11_03.vcxproj.user │ ├── Ch11_03_.asm │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── Ch11_04 │ ├── Ch11_04.cpp │ ├── Ch11_04.vcxproj │ ├── Ch11_04.vcxproj.filters │ ├── Ch11_04.vcxproj.user │ ├── Ch11_04_.asm │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── Ch11_05 │ ├── Ch11_05.cpp │ ├── Ch11_05.vcxproj │ ├── Ch11_05.vcxproj.filters │ ├── Ch11_05.vcxproj.user │ ├── Ch11_05_.asm │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── Ch11_Include │ ├── AlignedMem.h │ ├── BmThreadTimer.h │ ├── ImageMatrix.h │ ├── MacrosX86-64-AVX.asmh │ ├── Matrix.h │ ├── OS.h │ ├── Vector.h │ ├── XmmVal.h │ ├── YmmVal.h │ ├── ZmmVal.h │ └── cmpequ.asmh ├── Chapter11.sln └── Important Source Code Notes.txt ├── Chapter13 ├── Ch13_01 │ ├── Ch13_01.cpp │ ├── Ch13_01.vcxproj │ ├── Ch13_01.vcxproj.filters │ ├── Ch13_01.vcxproj.user │ ├── Ch13_01_.asm │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── Ch13_02 │ ├── Ch13_02.cpp │ ├── Ch13_02.vcxproj │ ├── Ch13_02.vcxproj.filters │ ├── Ch13_02.vcxproj.user │ ├── Ch13_02_.asm │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── Ch13_03 │ ├── Ch13_03.cpp │ ├── Ch13_03.vcxproj │ ├── Ch13_03.vcxproj.filters │ ├── Ch13_03.vcxproj.user │ ├── Ch13_03_.asm │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── Ch13_04 │ ├── Ch13_04.cpp │ ├── Ch13_04.vcxproj │ ├── Ch13_04.vcxproj.filters │ ├── Ch13_04.vcxproj.user │ ├── Ch13_04_.asm │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── Ch13_05 │ ├── Ch13_05.cpp │ ├── Ch13_05.vcxproj │ ├── Ch13_05.vcxproj.filters │ ├── Ch13_05.vcxproj.user │ ├── Ch13_05_.asm │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── Ch13_06 │ ├── Ch13_06.cpp │ ├── Ch13_06.vcxproj │ ├── Ch13_06.vcxproj.filters │ ├── Ch13_06.vcxproj.user │ ├── Ch13_06_.asm │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── Ch13_07 │ ├── Ch13_07.cpp │ ├── Ch13_07.h │ ├── Ch13_07.vcxproj │ ├── Ch13_07.vcxproj.filters │ ├── Ch13_07.vcxproj.user │ ├── Ch13_07_.asm │ ├── Ch13_07_BM.cpp │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── Ch13_08 │ ├── Ch13_08.cpp │ ├── Ch13_08.h │ ├── Ch13_08.vcxproj │ ├── Ch13_08.vcxproj.filters │ ├── Ch13_08.vcxproj.user │ ├── Ch13_08_.asm │ ├── Ch13_08_BM.cpp │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── Ch13_09 │ ├── Ch13_09.cpp │ ├── Ch13_09.h │ ├── Ch13_09.vcxproj │ ├── Ch13_09.vcxproj.filters │ ├── Ch13_09.vcxproj.user │ ├── Ch13_09_.asm │ ├── Ch13_09_BM.cpp │ ├── Ch13_09_Misc.cpp │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── Ch13_Include │ ├── AlignedMem.h │ ├── BmThreadTimer.h │ ├── ImageMatrix.h │ ├── MacrosX86-64-AVX.asmh │ ├── Matrix.h │ ├── OS.h │ ├── Vector.h │ ├── XmmVal.h │ ├── YmmVal.h │ ├── ZmmVal.h │ └── cmpequ.asmh ├── Chapter13.sln └── Important Source Code Notes.txt ├── Chapter14 ├── Ch14_01 │ ├── Ch14_01.cpp │ ├── Ch14_01.vcxproj │ ├── Ch14_01.vcxproj.filters │ ├── Ch14_01.vcxproj.user │ ├── Ch14_01_.asm │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── Ch14_02 │ ├── Ch14_02.cpp │ ├── Ch14_02.vcxproj │ ├── Ch14_02.vcxproj.filters │ ├── Ch14_02.vcxproj.user │ ├── Ch14_02_.asm │ ├── Ch14_02_Misc.cpp │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── Ch14_03 │ ├── Ch14_03.cpp │ ├── Ch14_03.h │ ├── Ch14_03.vcxproj │ ├── Ch14_03.vcxproj.filters │ ├── Ch14_03.vcxproj.user │ ├── Ch14_03_.asm │ ├── Ch14_03_Misc.cpp │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── Ch14_04 │ ├── Ch14_04.cpp │ ├── Ch14_04.h │ ├── Ch14_04.vcxproj │ ├── Ch14_04.vcxproj.filters │ ├── Ch14_04.vcxproj.user │ ├── Ch14_04_.asm │ ├── Ch14_04_BM.cpp │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── Ch14_05 │ ├── Ch14_05.cpp │ ├── Ch14_05.h │ ├── Ch14_05.vcxproj │ ├── Ch14_05.vcxproj.filters │ ├── Ch14_05.vcxproj.user │ ├── Ch14_05_.asm │ ├── Ch14_05_BM.cpp │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── Ch14_Data │ ├── TestImage3.bmp │ └── TestImage4.bmp ├── Ch14_Include │ ├── AlignedMem.h │ ├── BmThreadTimer.h │ ├── ImageMatrix.h │ ├── MacrosX86-64-AVX.asmh │ ├── Matrix.h │ ├── OS.h │ ├── Vector.h │ ├── XmmVal.h │ ├── YmmVal.h │ ├── ZmmVal.h │ └── cmpequ.asmh ├── Chapter14.sln └── Important Source Code Notes.txt ├── Chapter15 ├── Ch15_01 │ ├── Ch15_01.cpp │ ├── Ch15_01.vcxproj │ ├── Ch15_01.vcxproj.filters │ ├── Ch15_01.vcxproj.user │ ├── Ch15_01_.asm │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── Ch15_Include │ ├── AlignedMem.h │ ├── BmThreadTimer.h │ ├── ImageMatrix.h │ ├── MacrosX86-64-AVX.asmh │ ├── Matrix.h │ ├── OS.h │ ├── Vector.h │ ├── XmmVal.h │ ├── YmmVal.h │ ├── ZmmVal.h │ └── cmpequ.asmh ├── Chapter15.sln └── Important Source Code Notes.txt ├── Chapter16 ├── Ch16_01 │ ├── CacheInfo.cpp │ ├── Ch16_01.cpp │ ├── Ch16_01.vcxproj │ ├── Ch16_01.vcxproj.filters │ ├── Ch16_01.vcxproj.user │ ├── CpuidInfo.cpp │ ├── CpuidInfo.h │ ├── CpuidInfo_.asm │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── Ch16_02 │ ├── Ch16_02.cpp │ ├── Ch16_02.h │ ├── Ch16_02.vcxproj │ ├── Ch16_02.vcxproj.filters │ ├── Ch16_02.vcxproj.user │ ├── Ch16_02_.asm │ ├── Ch16_02_BM.cpp │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── Ch16_03 │ ├── Ch16_03.cpp │ ├── Ch16_03.h │ ├── Ch16_03.vcxproj │ ├── Ch16_03.vcxproj.filters │ ├── Ch16_03.vcxproj.user │ ├── Ch16_03_.asm │ ├── Ch16_03_.asmh │ ├── Ch16_03_BM.cpp │ ├── Ch16_03_Misc.cpp │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── Ch16_04 │ ├── Ch16_04.cpp │ ├── Ch16_04.h │ ├── Ch16_04.vcxproj │ ├── Ch16_04.vcxproj.filters │ ├── Ch16_04.vcxproj.user │ ├── Ch16_04_.asm │ ├── Ch16_04_Misc.cpp │ ├── Ch16_04_WinApi.cpp │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── Ch16_Include │ ├── AlignedMem.h │ ├── BmThreadTimer.h │ ├── ImageMatrix.h │ ├── MacrosX86-64-AVX.asmh │ ├── Matrix.h │ ├── OS.h │ ├── Vector.h │ ├── XmmVal.h │ ├── YmmVal.h │ ├── ZmmVal.h │ └── cmpequ.asmh ├── Chapter16.sln └── Important Source Code Notes.txt ├── Contributing.md ├── LICENSE.txt ├── README.md └── errata.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/.gitattributes -------------------------------------------------------------------------------- /9781484240625.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/9781484240625.jpg -------------------------------------------------------------------------------- /Chapter02/Ch02_01/Ch02_01.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter02/Ch02_01/Ch02_01.cpp -------------------------------------------------------------------------------- /Chapter02/Ch02_01/Ch02_01.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter02/Ch02_01/Ch02_01.vcxproj -------------------------------------------------------------------------------- /Chapter02/Ch02_01/Ch02_01.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter02/Ch02_01/Ch02_01.vcxproj.filters -------------------------------------------------------------------------------- /Chapter02/Ch02_01/Ch02_01.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter02/Ch02_01/Ch02_01.vcxproj.user -------------------------------------------------------------------------------- /Chapter02/Ch02_01/Ch02_01_.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter02/Ch02_01/Ch02_01_.asm -------------------------------------------------------------------------------- /Chapter02/Ch02_01/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter02/Ch02_01/stdafx.cpp -------------------------------------------------------------------------------- /Chapter02/Ch02_01/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter02/Ch02_01/stdafx.h -------------------------------------------------------------------------------- /Chapter02/Ch02_01/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter02/Ch02_01/targetver.h -------------------------------------------------------------------------------- /Chapter02/Ch02_02/Ch02_02.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter02/Ch02_02/Ch02_02.cpp -------------------------------------------------------------------------------- /Chapter02/Ch02_02/Ch02_02.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter02/Ch02_02/Ch02_02.vcxproj -------------------------------------------------------------------------------- /Chapter02/Ch02_02/Ch02_02.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter02/Ch02_02/Ch02_02.vcxproj.filters -------------------------------------------------------------------------------- /Chapter02/Ch02_02/Ch02_02.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter02/Ch02_02/Ch02_02.vcxproj.user -------------------------------------------------------------------------------- /Chapter02/Ch02_02/Ch02_02_.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter02/Ch02_02/Ch02_02_.asm -------------------------------------------------------------------------------- /Chapter02/Ch02_02/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter02/Ch02_02/stdafx.cpp -------------------------------------------------------------------------------- /Chapter02/Ch02_02/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter02/Ch02_02/stdafx.h -------------------------------------------------------------------------------- /Chapter02/Ch02_02/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter02/Ch02_02/targetver.h -------------------------------------------------------------------------------- /Chapter02/Ch02_03/Ch02_03.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter02/Ch02_03/Ch02_03.cpp -------------------------------------------------------------------------------- /Chapter02/Ch02_03/Ch02_03.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter02/Ch02_03/Ch02_03.vcxproj -------------------------------------------------------------------------------- /Chapter02/Ch02_03/Ch02_03.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter02/Ch02_03/Ch02_03.vcxproj.filters -------------------------------------------------------------------------------- /Chapter02/Ch02_03/Ch02_03.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter02/Ch02_03/Ch02_03.vcxproj.user -------------------------------------------------------------------------------- /Chapter02/Ch02_03/Ch02_03_.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter02/Ch02_03/Ch02_03_.asm -------------------------------------------------------------------------------- /Chapter02/Ch02_03/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter02/Ch02_03/stdafx.cpp -------------------------------------------------------------------------------- /Chapter02/Ch02_03/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter02/Ch02_03/stdafx.h -------------------------------------------------------------------------------- /Chapter02/Ch02_03/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter02/Ch02_03/targetver.h -------------------------------------------------------------------------------- /Chapter02/Ch02_04/Ch02_04.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter02/Ch02_04/Ch02_04.cpp -------------------------------------------------------------------------------- /Chapter02/Ch02_04/Ch02_04.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter02/Ch02_04/Ch02_04.vcxproj -------------------------------------------------------------------------------- /Chapter02/Ch02_04/Ch02_04.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter02/Ch02_04/Ch02_04.vcxproj.filters -------------------------------------------------------------------------------- /Chapter02/Ch02_04/Ch02_04.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter02/Ch02_04/Ch02_04.vcxproj.user -------------------------------------------------------------------------------- /Chapter02/Ch02_04/Ch02_04_.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter02/Ch02_04/Ch02_04_.asm -------------------------------------------------------------------------------- /Chapter02/Ch02_04/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter02/Ch02_04/stdafx.cpp -------------------------------------------------------------------------------- /Chapter02/Ch02_04/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter02/Ch02_04/stdafx.h -------------------------------------------------------------------------------- /Chapter02/Ch02_04/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter02/Ch02_04/targetver.h -------------------------------------------------------------------------------- /Chapter02/Ch02_05/Ch02_05.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter02/Ch02_05/Ch02_05.cpp -------------------------------------------------------------------------------- /Chapter02/Ch02_05/Ch02_05.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter02/Ch02_05/Ch02_05.vcxproj -------------------------------------------------------------------------------- /Chapter02/Ch02_05/Ch02_05.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter02/Ch02_05/Ch02_05.vcxproj.filters -------------------------------------------------------------------------------- /Chapter02/Ch02_05/Ch02_05.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter02/Ch02_05/Ch02_05.vcxproj.user -------------------------------------------------------------------------------- /Chapter02/Ch02_05/Ch02_05_.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter02/Ch02_05/Ch02_05_.asm -------------------------------------------------------------------------------- /Chapter02/Ch02_05/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter02/Ch02_05/stdafx.cpp -------------------------------------------------------------------------------- /Chapter02/Ch02_05/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter02/Ch02_05/stdafx.h -------------------------------------------------------------------------------- /Chapter02/Ch02_05/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter02/Ch02_05/targetver.h -------------------------------------------------------------------------------- /Chapter02/Ch02_06/Ch02_06.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter02/Ch02_06/Ch02_06.cpp -------------------------------------------------------------------------------- /Chapter02/Ch02_06/Ch02_06.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter02/Ch02_06/Ch02_06.vcxproj -------------------------------------------------------------------------------- /Chapter02/Ch02_06/Ch02_06.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter02/Ch02_06/Ch02_06.vcxproj.filters -------------------------------------------------------------------------------- /Chapter02/Ch02_06/Ch02_06.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter02/Ch02_06/Ch02_06.vcxproj.user -------------------------------------------------------------------------------- /Chapter02/Ch02_06/Ch02_06_.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter02/Ch02_06/Ch02_06_.asm -------------------------------------------------------------------------------- /Chapter02/Ch02_06/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter02/Ch02_06/stdafx.cpp -------------------------------------------------------------------------------- /Chapter02/Ch02_06/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter02/Ch02_06/stdafx.h -------------------------------------------------------------------------------- /Chapter02/Ch02_06/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter02/Ch02_06/targetver.h -------------------------------------------------------------------------------- /Chapter02/Ch02_07/Ch02_07.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter02/Ch02_07/Ch02_07.cpp -------------------------------------------------------------------------------- /Chapter02/Ch02_07/Ch02_07.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter02/Ch02_07/Ch02_07.vcxproj -------------------------------------------------------------------------------- /Chapter02/Ch02_07/Ch02_07.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter02/Ch02_07/Ch02_07.vcxproj.filters -------------------------------------------------------------------------------- /Chapter02/Ch02_07/Ch02_07.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter02/Ch02_07/Ch02_07.vcxproj.user -------------------------------------------------------------------------------- /Chapter02/Ch02_07/Ch02_07_.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter02/Ch02_07/Ch02_07_.asm -------------------------------------------------------------------------------- /Chapter02/Ch02_07/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter02/Ch02_07/stdafx.cpp -------------------------------------------------------------------------------- /Chapter02/Ch02_07/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter02/Ch02_07/stdafx.h -------------------------------------------------------------------------------- /Chapter02/Ch02_07/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter02/Ch02_07/targetver.h -------------------------------------------------------------------------------- /Chapter02/Chapter02.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter02/Chapter02.sln -------------------------------------------------------------------------------- /Chapter03/Ch03_01/Ch03_01.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter03/Ch03_01/Ch03_01.cpp -------------------------------------------------------------------------------- /Chapter03/Ch03_01/Ch03_01.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter03/Ch03_01/Ch03_01.vcxproj -------------------------------------------------------------------------------- /Chapter03/Ch03_01/Ch03_01.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter03/Ch03_01/Ch03_01.vcxproj.filters -------------------------------------------------------------------------------- /Chapter03/Ch03_01/Ch03_01.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter03/Ch03_01/Ch03_01.vcxproj.user -------------------------------------------------------------------------------- /Chapter03/Ch03_01/Ch03_01_.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter03/Ch03_01/Ch03_01_.asm -------------------------------------------------------------------------------- /Chapter03/Ch03_01/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter03/Ch03_01/stdafx.cpp -------------------------------------------------------------------------------- /Chapter03/Ch03_01/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter03/Ch03_01/stdafx.h -------------------------------------------------------------------------------- /Chapter03/Ch03_01/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter03/Ch03_01/targetver.h -------------------------------------------------------------------------------- /Chapter03/Ch03_02/Ch03_02.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter03/Ch03_02/Ch03_02.cpp -------------------------------------------------------------------------------- /Chapter03/Ch03_02/Ch03_02.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter03/Ch03_02/Ch03_02.vcxproj -------------------------------------------------------------------------------- /Chapter03/Ch03_02/Ch03_02.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter03/Ch03_02/Ch03_02.vcxproj.filters -------------------------------------------------------------------------------- /Chapter03/Ch03_02/Ch03_02.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter03/Ch03_02/Ch03_02.vcxproj.user -------------------------------------------------------------------------------- /Chapter03/Ch03_02/Ch03_02_.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter03/Ch03_02/Ch03_02_.asm -------------------------------------------------------------------------------- /Chapter03/Ch03_02/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter03/Ch03_02/stdafx.cpp -------------------------------------------------------------------------------- /Chapter03/Ch03_02/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter03/Ch03_02/stdafx.h -------------------------------------------------------------------------------- /Chapter03/Ch03_02/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter03/Ch03_02/targetver.h -------------------------------------------------------------------------------- /Chapter03/Ch03_03/Ch03_03.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter03/Ch03_03/Ch03_03.cpp -------------------------------------------------------------------------------- /Chapter03/Ch03_03/Ch03_03.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter03/Ch03_03/Ch03_03.vcxproj -------------------------------------------------------------------------------- /Chapter03/Ch03_03/Ch03_03.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter03/Ch03_03/Ch03_03.vcxproj.filters -------------------------------------------------------------------------------- /Chapter03/Ch03_03/Ch03_03.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter03/Ch03_03/Ch03_03.vcxproj.user -------------------------------------------------------------------------------- /Chapter03/Ch03_03/Ch03_03_.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter03/Ch03_03/Ch03_03_.asm -------------------------------------------------------------------------------- /Chapter03/Ch03_03/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter03/Ch03_03/stdafx.cpp -------------------------------------------------------------------------------- /Chapter03/Ch03_03/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter03/Ch03_03/stdafx.h -------------------------------------------------------------------------------- /Chapter03/Ch03_03/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter03/Ch03_03/targetver.h -------------------------------------------------------------------------------- /Chapter03/Ch03_04/Ch03_04.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter03/Ch03_04/Ch03_04.cpp -------------------------------------------------------------------------------- /Chapter03/Ch03_04/Ch03_04.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter03/Ch03_04/Ch03_04.vcxproj -------------------------------------------------------------------------------- /Chapter03/Ch03_04/Ch03_04.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter03/Ch03_04/Ch03_04.vcxproj.filters -------------------------------------------------------------------------------- /Chapter03/Ch03_04/Ch03_04.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter03/Ch03_04/Ch03_04.vcxproj.user -------------------------------------------------------------------------------- /Chapter03/Ch03_04/Ch03_04_.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter03/Ch03_04/Ch03_04_.asm -------------------------------------------------------------------------------- /Chapter03/Ch03_04/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter03/Ch03_04/stdafx.cpp -------------------------------------------------------------------------------- /Chapter03/Ch03_04/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter03/Ch03_04/stdafx.h -------------------------------------------------------------------------------- /Chapter03/Ch03_04/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter03/Ch03_04/targetver.h -------------------------------------------------------------------------------- /Chapter03/Ch03_05/Ch03_05.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter03/Ch03_05/Ch03_05.cpp -------------------------------------------------------------------------------- /Chapter03/Ch03_05/Ch03_05.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter03/Ch03_05/Ch03_05.vcxproj -------------------------------------------------------------------------------- /Chapter03/Ch03_05/Ch03_05.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter03/Ch03_05/Ch03_05.vcxproj.filters -------------------------------------------------------------------------------- /Chapter03/Ch03_05/Ch03_05.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter03/Ch03_05/Ch03_05.vcxproj.user -------------------------------------------------------------------------------- /Chapter03/Ch03_05/Ch03_05_.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter03/Ch03_05/Ch03_05_.asm -------------------------------------------------------------------------------- /Chapter03/Ch03_05/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter03/Ch03_05/stdafx.cpp -------------------------------------------------------------------------------- /Chapter03/Ch03_05/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter03/Ch03_05/stdafx.h -------------------------------------------------------------------------------- /Chapter03/Ch03_05/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter03/Ch03_05/targetver.h -------------------------------------------------------------------------------- /Chapter03/Ch03_06/Ch03_06.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter03/Ch03_06/Ch03_06.cpp -------------------------------------------------------------------------------- /Chapter03/Ch03_06/Ch03_06.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter03/Ch03_06/Ch03_06.vcxproj -------------------------------------------------------------------------------- /Chapter03/Ch03_06/Ch03_06.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter03/Ch03_06/Ch03_06.vcxproj.filters -------------------------------------------------------------------------------- /Chapter03/Ch03_06/Ch03_06.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter03/Ch03_06/Ch03_06.vcxproj.user -------------------------------------------------------------------------------- /Chapter03/Ch03_06/Ch03_06_.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter03/Ch03_06/Ch03_06_.asm -------------------------------------------------------------------------------- /Chapter03/Ch03_06/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter03/Ch03_06/stdafx.cpp -------------------------------------------------------------------------------- /Chapter03/Ch03_06/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter03/Ch03_06/stdafx.h -------------------------------------------------------------------------------- /Chapter03/Ch03_06/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter03/Ch03_06/targetver.h -------------------------------------------------------------------------------- /Chapter03/Ch03_07/Ch03_07.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter03/Ch03_07/Ch03_07.cpp -------------------------------------------------------------------------------- /Chapter03/Ch03_07/Ch03_07.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter03/Ch03_07/Ch03_07.vcxproj -------------------------------------------------------------------------------- /Chapter03/Ch03_07/Ch03_07.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter03/Ch03_07/Ch03_07.vcxproj.filters -------------------------------------------------------------------------------- /Chapter03/Ch03_07/Ch03_07.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter03/Ch03_07/Ch03_07.vcxproj.user -------------------------------------------------------------------------------- /Chapter03/Ch03_07/Ch03_07_.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter03/Ch03_07/Ch03_07_.asm -------------------------------------------------------------------------------- /Chapter03/Ch03_07/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter03/Ch03_07/stdafx.cpp -------------------------------------------------------------------------------- /Chapter03/Ch03_07/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter03/Ch03_07/stdafx.h -------------------------------------------------------------------------------- /Chapter03/Ch03_07/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter03/Ch03_07/targetver.h -------------------------------------------------------------------------------- /Chapter03/Ch03_08/Ch03_08.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter03/Ch03_08/Ch03_08.cpp -------------------------------------------------------------------------------- /Chapter03/Ch03_08/Ch03_08.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter03/Ch03_08/Ch03_08.vcxproj -------------------------------------------------------------------------------- /Chapter03/Ch03_08/Ch03_08.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter03/Ch03_08/Ch03_08.vcxproj.filters -------------------------------------------------------------------------------- /Chapter03/Ch03_08/Ch03_08.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter03/Ch03_08/Ch03_08.vcxproj.user -------------------------------------------------------------------------------- /Chapter03/Ch03_08/Ch03_08_.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter03/Ch03_08/Ch03_08_.asm -------------------------------------------------------------------------------- /Chapter03/Ch03_08/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter03/Ch03_08/stdafx.cpp -------------------------------------------------------------------------------- /Chapter03/Ch03_08/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter03/Ch03_08/stdafx.h -------------------------------------------------------------------------------- /Chapter03/Ch03_08/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter03/Ch03_08/targetver.h -------------------------------------------------------------------------------- /Chapter03/Ch03_09/Ch03_09.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter03/Ch03_09/Ch03_09.cpp -------------------------------------------------------------------------------- /Chapter03/Ch03_09/Ch03_09.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter03/Ch03_09/Ch03_09.vcxproj -------------------------------------------------------------------------------- /Chapter03/Ch03_09/Ch03_09.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter03/Ch03_09/Ch03_09.vcxproj.filters -------------------------------------------------------------------------------- /Chapter03/Ch03_09/Ch03_09.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter03/Ch03_09/Ch03_09.vcxproj.user -------------------------------------------------------------------------------- /Chapter03/Ch03_09/Ch03_09_.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter03/Ch03_09/Ch03_09_.asm -------------------------------------------------------------------------------- /Chapter03/Ch03_09/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter03/Ch03_09/stdafx.cpp -------------------------------------------------------------------------------- /Chapter03/Ch03_09/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter03/Ch03_09/stdafx.h -------------------------------------------------------------------------------- /Chapter03/Ch03_09/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter03/Ch03_09/targetver.h -------------------------------------------------------------------------------- /Chapter03/Chapter03.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter03/Chapter03.sln -------------------------------------------------------------------------------- /Chapter05/Ch05_01/Ch05_01.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter05/Ch05_01/Ch05_01.cpp -------------------------------------------------------------------------------- /Chapter05/Ch05_01/Ch05_01.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter05/Ch05_01/Ch05_01.vcxproj -------------------------------------------------------------------------------- /Chapter05/Ch05_01/Ch05_01.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter05/Ch05_01/Ch05_01.vcxproj.filters -------------------------------------------------------------------------------- /Chapter05/Ch05_01/Ch05_01.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter05/Ch05_01/Ch05_01.vcxproj.user -------------------------------------------------------------------------------- /Chapter05/Ch05_01/Ch05_01_.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter05/Ch05_01/Ch05_01_.asm -------------------------------------------------------------------------------- /Chapter05/Ch05_01/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter05/Ch05_01/stdafx.cpp -------------------------------------------------------------------------------- /Chapter05/Ch05_01/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter05/Ch05_01/stdafx.h -------------------------------------------------------------------------------- /Chapter05/Ch05_01/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter05/Ch05_01/targetver.h -------------------------------------------------------------------------------- /Chapter05/Ch05_02/Ch05_02.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter05/Ch05_02/Ch05_02.cpp -------------------------------------------------------------------------------- /Chapter05/Ch05_02/Ch05_02.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter05/Ch05_02/Ch05_02.vcxproj -------------------------------------------------------------------------------- /Chapter05/Ch05_02/Ch05_02.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter05/Ch05_02/Ch05_02.vcxproj.filters -------------------------------------------------------------------------------- /Chapter05/Ch05_02/Ch05_02.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter05/Ch05_02/Ch05_02.vcxproj.user -------------------------------------------------------------------------------- /Chapter05/Ch05_02/Ch05_02_.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter05/Ch05_02/Ch05_02_.asm -------------------------------------------------------------------------------- /Chapter05/Ch05_02/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter05/Ch05_02/stdafx.cpp -------------------------------------------------------------------------------- /Chapter05/Ch05_02/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter05/Ch05_02/stdafx.h -------------------------------------------------------------------------------- /Chapter05/Ch05_02/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter05/Ch05_02/targetver.h -------------------------------------------------------------------------------- /Chapter05/Ch05_03/Ch05_03.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter05/Ch05_03/Ch05_03.cpp -------------------------------------------------------------------------------- /Chapter05/Ch05_03/Ch05_03.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter05/Ch05_03/Ch05_03.vcxproj -------------------------------------------------------------------------------- /Chapter05/Ch05_03/Ch05_03.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter05/Ch05_03/Ch05_03.vcxproj.filters -------------------------------------------------------------------------------- /Chapter05/Ch05_03/Ch05_03.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter05/Ch05_03/Ch05_03.vcxproj.user -------------------------------------------------------------------------------- /Chapter05/Ch05_03/Ch05_03_.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter05/Ch05_03/Ch05_03_.asm -------------------------------------------------------------------------------- /Chapter05/Ch05_03/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter05/Ch05_03/stdafx.cpp -------------------------------------------------------------------------------- /Chapter05/Ch05_03/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter05/Ch05_03/stdafx.h -------------------------------------------------------------------------------- /Chapter05/Ch05_03/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter05/Ch05_03/targetver.h -------------------------------------------------------------------------------- /Chapter05/Ch05_04/Ch05_04.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter05/Ch05_04/Ch05_04.cpp -------------------------------------------------------------------------------- /Chapter05/Ch05_04/Ch05_04.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter05/Ch05_04/Ch05_04.vcxproj -------------------------------------------------------------------------------- /Chapter05/Ch05_04/Ch05_04.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter05/Ch05_04/Ch05_04.vcxproj.filters -------------------------------------------------------------------------------- /Chapter05/Ch05_04/Ch05_04.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter05/Ch05_04/Ch05_04.vcxproj.user -------------------------------------------------------------------------------- /Chapter05/Ch05_04/Ch05_04_.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter05/Ch05_04/Ch05_04_.asm -------------------------------------------------------------------------------- /Chapter05/Ch05_04/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter05/Ch05_04/stdafx.cpp -------------------------------------------------------------------------------- /Chapter05/Ch05_04/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter05/Ch05_04/stdafx.h -------------------------------------------------------------------------------- /Chapter05/Ch05_04/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter05/Ch05_04/targetver.h -------------------------------------------------------------------------------- /Chapter05/Ch05_05/Ch05_05.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter05/Ch05_05/Ch05_05.cpp -------------------------------------------------------------------------------- /Chapter05/Ch05_05/Ch05_05.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter05/Ch05_05/Ch05_05.vcxproj -------------------------------------------------------------------------------- /Chapter05/Ch05_05/Ch05_05.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter05/Ch05_05/Ch05_05.vcxproj.filters -------------------------------------------------------------------------------- /Chapter05/Ch05_05/Ch05_05.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter05/Ch05_05/Ch05_05.vcxproj.user -------------------------------------------------------------------------------- /Chapter05/Ch05_05/Ch05_05_.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter05/Ch05_05/Ch05_05_.asm -------------------------------------------------------------------------------- /Chapter05/Ch05_05/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter05/Ch05_05/stdafx.cpp -------------------------------------------------------------------------------- /Chapter05/Ch05_05/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter05/Ch05_05/stdafx.h -------------------------------------------------------------------------------- /Chapter05/Ch05_05/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter05/Ch05_05/targetver.h -------------------------------------------------------------------------------- /Chapter05/Ch05_06/Ch05_06.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter05/Ch05_06/Ch05_06.cpp -------------------------------------------------------------------------------- /Chapter05/Ch05_06/Ch05_06.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter05/Ch05_06/Ch05_06.vcxproj -------------------------------------------------------------------------------- /Chapter05/Ch05_06/Ch05_06.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter05/Ch05_06/Ch05_06.vcxproj.filters -------------------------------------------------------------------------------- /Chapter05/Ch05_06/Ch05_06.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter05/Ch05_06/Ch05_06.vcxproj.user -------------------------------------------------------------------------------- /Chapter05/Ch05_06/Ch05_06_.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter05/Ch05_06/Ch05_06_.asm -------------------------------------------------------------------------------- /Chapter05/Ch05_06/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter05/Ch05_06/stdafx.cpp -------------------------------------------------------------------------------- /Chapter05/Ch05_06/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter05/Ch05_06/stdafx.h -------------------------------------------------------------------------------- /Chapter05/Ch05_06/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter05/Ch05_06/targetver.h -------------------------------------------------------------------------------- /Chapter05/Ch05_07/Ch05_07.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter05/Ch05_07/Ch05_07.cpp -------------------------------------------------------------------------------- /Chapter05/Ch05_07/Ch05_07.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter05/Ch05_07/Ch05_07.vcxproj -------------------------------------------------------------------------------- /Chapter05/Ch05_07/Ch05_07.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter05/Ch05_07/Ch05_07.vcxproj.filters -------------------------------------------------------------------------------- /Chapter05/Ch05_07/Ch05_07.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter05/Ch05_07/Ch05_07.vcxproj.user -------------------------------------------------------------------------------- /Chapter05/Ch05_07/Ch05_07_.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter05/Ch05_07/Ch05_07_.asm -------------------------------------------------------------------------------- /Chapter05/Ch05_07/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter05/Ch05_07/stdafx.cpp -------------------------------------------------------------------------------- /Chapter05/Ch05_07/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter05/Ch05_07/stdafx.h -------------------------------------------------------------------------------- /Chapter05/Ch05_07/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter05/Ch05_07/targetver.h -------------------------------------------------------------------------------- /Chapter05/Ch05_08/Ch05_08.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter05/Ch05_08/Ch05_08.cpp -------------------------------------------------------------------------------- /Chapter05/Ch05_08/Ch05_08.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter05/Ch05_08/Ch05_08.vcxproj -------------------------------------------------------------------------------- /Chapter05/Ch05_08/Ch05_08.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter05/Ch05_08/Ch05_08.vcxproj.filters -------------------------------------------------------------------------------- /Chapter05/Ch05_08/Ch05_08.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter05/Ch05_08/Ch05_08.vcxproj.user -------------------------------------------------------------------------------- /Chapter05/Ch05_08/Ch05_08_.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter05/Ch05_08/Ch05_08_.asm -------------------------------------------------------------------------------- /Chapter05/Ch05_08/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter05/Ch05_08/stdafx.cpp -------------------------------------------------------------------------------- /Chapter05/Ch05_08/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter05/Ch05_08/stdafx.h -------------------------------------------------------------------------------- /Chapter05/Ch05_08/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter05/Ch05_08/targetver.h -------------------------------------------------------------------------------- /Chapter05/Ch05_09/Ch05_09.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter05/Ch05_09/Ch05_09.cpp -------------------------------------------------------------------------------- /Chapter05/Ch05_09/Ch05_09.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter05/Ch05_09/Ch05_09.vcxproj -------------------------------------------------------------------------------- /Chapter05/Ch05_09/Ch05_09.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter05/Ch05_09/Ch05_09.vcxproj.filters -------------------------------------------------------------------------------- /Chapter05/Ch05_09/Ch05_09.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter05/Ch05_09/Ch05_09.vcxproj.user -------------------------------------------------------------------------------- /Chapter05/Ch05_09/Ch05_09_.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter05/Ch05_09/Ch05_09_.asm -------------------------------------------------------------------------------- /Chapter05/Ch05_09/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter05/Ch05_09/stdafx.cpp -------------------------------------------------------------------------------- /Chapter05/Ch05_09/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter05/Ch05_09/stdafx.h -------------------------------------------------------------------------------- /Chapter05/Ch05_09/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter05/Ch05_09/targetver.h -------------------------------------------------------------------------------- /Chapter05/Ch05_10/Ch05_10.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter05/Ch05_10/Ch05_10.cpp -------------------------------------------------------------------------------- /Chapter05/Ch05_10/Ch05_10.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter05/Ch05_10/Ch05_10.vcxproj -------------------------------------------------------------------------------- /Chapter05/Ch05_10/Ch05_10.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter05/Ch05_10/Ch05_10.vcxproj.filters -------------------------------------------------------------------------------- /Chapter05/Ch05_10/Ch05_10.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter05/Ch05_10/Ch05_10.vcxproj.user -------------------------------------------------------------------------------- /Chapter05/Ch05_10/Ch05_10_.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter05/Ch05_10/Ch05_10_.asm -------------------------------------------------------------------------------- /Chapter05/Ch05_10/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter05/Ch05_10/stdafx.cpp -------------------------------------------------------------------------------- /Chapter05/Ch05_10/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter05/Ch05_10/stdafx.h -------------------------------------------------------------------------------- /Chapter05/Ch05_10/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter05/Ch05_10/targetver.h -------------------------------------------------------------------------------- /Chapter05/Ch05_11/Ch05_11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter05/Ch05_11/Ch05_11.cpp -------------------------------------------------------------------------------- /Chapter05/Ch05_11/Ch05_11.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter05/Ch05_11/Ch05_11.vcxproj -------------------------------------------------------------------------------- /Chapter05/Ch05_11/Ch05_11.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter05/Ch05_11/Ch05_11.vcxproj.filters -------------------------------------------------------------------------------- /Chapter05/Ch05_11/Ch05_11.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter05/Ch05_11/Ch05_11.vcxproj.user -------------------------------------------------------------------------------- /Chapter05/Ch05_11/Ch05_11_.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter05/Ch05_11/Ch05_11_.asm -------------------------------------------------------------------------------- /Chapter05/Ch05_11/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter05/Ch05_11/stdafx.cpp -------------------------------------------------------------------------------- /Chapter05/Ch05_11/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter05/Ch05_11/stdafx.h -------------------------------------------------------------------------------- /Chapter05/Ch05_11/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter05/Ch05_11/targetver.h -------------------------------------------------------------------------------- /Chapter05/Ch05_12/Ch05_12.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter05/Ch05_12/Ch05_12.cpp -------------------------------------------------------------------------------- /Chapter05/Ch05_12/Ch05_12.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter05/Ch05_12/Ch05_12.vcxproj -------------------------------------------------------------------------------- /Chapter05/Ch05_12/Ch05_12.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter05/Ch05_12/Ch05_12.vcxproj.filters -------------------------------------------------------------------------------- /Chapter05/Ch05_12/Ch05_12.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter05/Ch05_12/Ch05_12.vcxproj.user -------------------------------------------------------------------------------- /Chapter05/Ch05_12/Ch05_12_.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter05/Ch05_12/Ch05_12_.asm -------------------------------------------------------------------------------- /Chapter05/Ch05_12/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter05/Ch05_12/stdafx.cpp -------------------------------------------------------------------------------- /Chapter05/Ch05_12/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter05/Ch05_12/stdafx.h -------------------------------------------------------------------------------- /Chapter05/Ch05_12/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter05/Ch05_12/targetver.h -------------------------------------------------------------------------------- /Chapter05/Ch05_Include/cmpequ.asmh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter05/Ch05_Include/cmpequ.asmh -------------------------------------------------------------------------------- /Chapter05/Chapter05.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter05/Chapter05.sln -------------------------------------------------------------------------------- /Chapter06/Ch06_01/Ch06_01.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter06/Ch06_01/Ch06_01.cpp -------------------------------------------------------------------------------- /Chapter06/Ch06_01/Ch06_01.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter06/Ch06_01/Ch06_01.vcxproj -------------------------------------------------------------------------------- /Chapter06/Ch06_01/Ch06_01.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter06/Ch06_01/Ch06_01.vcxproj.filters -------------------------------------------------------------------------------- /Chapter06/Ch06_01/Ch06_01.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter06/Ch06_01/Ch06_01.vcxproj.user -------------------------------------------------------------------------------- /Chapter06/Ch06_01/Ch06_01_.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter06/Ch06_01/Ch06_01_.asm -------------------------------------------------------------------------------- /Chapter06/Ch06_01/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter06/Ch06_01/stdafx.cpp -------------------------------------------------------------------------------- /Chapter06/Ch06_01/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter06/Ch06_01/stdafx.h -------------------------------------------------------------------------------- /Chapter06/Ch06_01/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter06/Ch06_01/targetver.h -------------------------------------------------------------------------------- /Chapter06/Ch06_02/Ch06_02.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter06/Ch06_02/Ch06_02.cpp -------------------------------------------------------------------------------- /Chapter06/Ch06_02/Ch06_02.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter06/Ch06_02/Ch06_02.vcxproj -------------------------------------------------------------------------------- /Chapter06/Ch06_02/Ch06_02.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter06/Ch06_02/Ch06_02.vcxproj.filters -------------------------------------------------------------------------------- /Chapter06/Ch06_02/Ch06_02.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter06/Ch06_02/Ch06_02.vcxproj.user -------------------------------------------------------------------------------- /Chapter06/Ch06_02/Ch06_02_.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter06/Ch06_02/Ch06_02_.asm -------------------------------------------------------------------------------- /Chapter06/Ch06_02/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter06/Ch06_02/stdafx.cpp -------------------------------------------------------------------------------- /Chapter06/Ch06_02/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter06/Ch06_02/stdafx.h -------------------------------------------------------------------------------- /Chapter06/Ch06_02/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter06/Ch06_02/targetver.h -------------------------------------------------------------------------------- /Chapter06/Ch06_03/Ch06_03.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter06/Ch06_03/Ch06_03.cpp -------------------------------------------------------------------------------- /Chapter06/Ch06_03/Ch06_03.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter06/Ch06_03/Ch06_03.vcxproj -------------------------------------------------------------------------------- /Chapter06/Ch06_03/Ch06_03.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter06/Ch06_03/Ch06_03.vcxproj.user -------------------------------------------------------------------------------- /Chapter06/Ch06_03/Ch06_03_.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter06/Ch06_03/Ch06_03_.asm -------------------------------------------------------------------------------- /Chapter06/Ch06_03/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter06/Ch06_03/stdafx.cpp -------------------------------------------------------------------------------- /Chapter06/Ch06_03/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter06/Ch06_03/stdafx.h -------------------------------------------------------------------------------- /Chapter06/Ch06_03/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter06/Ch06_03/targetver.h -------------------------------------------------------------------------------- /Chapter06/Ch06_04/Ch06_04.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter06/Ch06_04/Ch06_04.cpp -------------------------------------------------------------------------------- /Chapter06/Ch06_04/Ch06_04.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter06/Ch06_04/Ch06_04.vcxproj -------------------------------------------------------------------------------- /Chapter06/Ch06_04/Ch06_04.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter06/Ch06_04/Ch06_04.vcxproj.user -------------------------------------------------------------------------------- /Chapter06/Ch06_04/Ch06_04_.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter06/Ch06_04/Ch06_04_.asm -------------------------------------------------------------------------------- /Chapter06/Ch06_04/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter06/Ch06_04/stdafx.cpp -------------------------------------------------------------------------------- /Chapter06/Ch06_04/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter06/Ch06_04/stdafx.h -------------------------------------------------------------------------------- /Chapter06/Ch06_04/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter06/Ch06_04/targetver.h -------------------------------------------------------------------------------- /Chapter06/Ch06_05/Ch06_05.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter06/Ch06_05/Ch06_05.cpp -------------------------------------------------------------------------------- /Chapter06/Ch06_05/Ch06_05.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter06/Ch06_05/Ch06_05.vcxproj -------------------------------------------------------------------------------- /Chapter06/Ch06_05/Ch06_05.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter06/Ch06_05/Ch06_05.vcxproj.user -------------------------------------------------------------------------------- /Chapter06/Ch06_05/Ch06_05_.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter06/Ch06_05/Ch06_05_.asm -------------------------------------------------------------------------------- /Chapter06/Ch06_05/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter06/Ch06_05/stdafx.cpp -------------------------------------------------------------------------------- /Chapter06/Ch06_05/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter06/Ch06_05/stdafx.h -------------------------------------------------------------------------------- /Chapter06/Ch06_05/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter06/Ch06_05/targetver.h -------------------------------------------------------------------------------- /Chapter06/Ch06_06/Ch06_06.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter06/Ch06_06/Ch06_06.cpp -------------------------------------------------------------------------------- /Chapter06/Ch06_06/Ch06_06.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter06/Ch06_06/Ch06_06.vcxproj -------------------------------------------------------------------------------- /Chapter06/Ch06_06/Ch06_06.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter06/Ch06_06/Ch06_06.vcxproj.user -------------------------------------------------------------------------------- /Chapter06/Ch06_06/Ch06_06_.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter06/Ch06_06/Ch06_06_.asm -------------------------------------------------------------------------------- /Chapter06/Ch06_06/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter06/Ch06_06/stdafx.cpp -------------------------------------------------------------------------------- /Chapter06/Ch06_06/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter06/Ch06_06/stdafx.h -------------------------------------------------------------------------------- /Chapter06/Ch06_06/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter06/Ch06_06/targetver.h -------------------------------------------------------------------------------- /Chapter06/Ch06_07/Ch06_07.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter06/Ch06_07/Ch06_07.cpp -------------------------------------------------------------------------------- /Chapter06/Ch06_07/Ch06_07.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter06/Ch06_07/Ch06_07.h -------------------------------------------------------------------------------- /Chapter06/Ch06_07/Ch06_07.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter06/Ch06_07/Ch06_07.vcxproj -------------------------------------------------------------------------------- /Chapter06/Ch06_07/Ch06_07.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter06/Ch06_07/Ch06_07.vcxproj.user -------------------------------------------------------------------------------- /Chapter06/Ch06_07/Ch06_07_.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter06/Ch06_07/Ch06_07_.asm -------------------------------------------------------------------------------- /Chapter06/Ch06_07/Ch06_07_BM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter06/Ch06_07/Ch06_07_BM.cpp -------------------------------------------------------------------------------- /Chapter06/Ch06_07/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter06/Ch06_07/stdafx.cpp -------------------------------------------------------------------------------- /Chapter06/Ch06_07/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter06/Ch06_07/stdafx.h -------------------------------------------------------------------------------- /Chapter06/Ch06_07/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter06/Ch06_07/targetver.h -------------------------------------------------------------------------------- /Chapter06/Ch06_08/Ch06_08.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter06/Ch06_08/Ch06_08.cpp -------------------------------------------------------------------------------- /Chapter06/Ch06_08/Ch06_08.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter06/Ch06_08/Ch06_08.h -------------------------------------------------------------------------------- /Chapter06/Ch06_08/Ch06_08.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter06/Ch06_08/Ch06_08.vcxproj -------------------------------------------------------------------------------- /Chapter06/Ch06_08/Ch06_08.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter06/Ch06_08/Ch06_08.vcxproj.user -------------------------------------------------------------------------------- /Chapter06/Ch06_08/Ch06_08_.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter06/Ch06_08/Ch06_08_.asm -------------------------------------------------------------------------------- /Chapter06/Ch06_08/Ch06_08_BM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter06/Ch06_08/Ch06_08_BM.cpp -------------------------------------------------------------------------------- /Chapter06/Ch06_08/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter06/Ch06_08/stdafx.cpp -------------------------------------------------------------------------------- /Chapter06/Ch06_08/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter06/Ch06_08/stdafx.h -------------------------------------------------------------------------------- /Chapter06/Ch06_08/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter06/Ch06_08/targetver.h -------------------------------------------------------------------------------- /Chapter06/Ch06_Include/AlignedMem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter06/Ch06_Include/AlignedMem.h -------------------------------------------------------------------------------- /Chapter06/Ch06_Include/BmThreadTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter06/Ch06_Include/BmThreadTimer.h -------------------------------------------------------------------------------- /Chapter06/Ch06_Include/ImageMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter06/Ch06_Include/ImageMatrix.h -------------------------------------------------------------------------------- /Chapter06/Ch06_Include/Matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter06/Ch06_Include/Matrix.h -------------------------------------------------------------------------------- /Chapter06/Ch06_Include/OS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter06/Ch06_Include/OS.h -------------------------------------------------------------------------------- /Chapter06/Ch06_Include/Vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter06/Ch06_Include/Vector.h -------------------------------------------------------------------------------- /Chapter06/Ch06_Include/XmmVal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter06/Ch06_Include/XmmVal.h -------------------------------------------------------------------------------- /Chapter06/Ch06_Include/YmmVal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter06/Ch06_Include/YmmVal.h -------------------------------------------------------------------------------- /Chapter06/Ch06_Include/ZmmVal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter06/Ch06_Include/ZmmVal.h -------------------------------------------------------------------------------- /Chapter06/Ch06_Include/cmpequ.asmh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter06/Ch06_Include/cmpequ.asmh -------------------------------------------------------------------------------- /Chapter06/Chapter06.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter06/Chapter06.sln -------------------------------------------------------------------------------- /Chapter07/Ch07_01/Ch07_01.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter07/Ch07_01/Ch07_01.cpp -------------------------------------------------------------------------------- /Chapter07/Ch07_01/Ch07_01.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter07/Ch07_01/Ch07_01.vcxproj -------------------------------------------------------------------------------- /Chapter07/Ch07_01/Ch07_01.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter07/Ch07_01/Ch07_01.vcxproj.user -------------------------------------------------------------------------------- /Chapter07/Ch07_01/Ch07_01_.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter07/Ch07_01/Ch07_01_.asm -------------------------------------------------------------------------------- /Chapter07/Ch07_01/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter07/Ch07_01/stdafx.cpp -------------------------------------------------------------------------------- /Chapter07/Ch07_01/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter07/Ch07_01/stdafx.h -------------------------------------------------------------------------------- /Chapter07/Ch07_01/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter07/Ch07_01/targetver.h -------------------------------------------------------------------------------- /Chapter07/Ch07_02/Ch07_02.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter07/Ch07_02/Ch07_02.cpp -------------------------------------------------------------------------------- /Chapter07/Ch07_02/Ch07_02.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter07/Ch07_02/Ch07_02.vcxproj -------------------------------------------------------------------------------- /Chapter07/Ch07_02/Ch07_02.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter07/Ch07_02/Ch07_02.vcxproj.user -------------------------------------------------------------------------------- /Chapter07/Ch07_02/Ch07_02_.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter07/Ch07_02/Ch07_02_.asm -------------------------------------------------------------------------------- /Chapter07/Ch07_02/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter07/Ch07_02/stdafx.cpp -------------------------------------------------------------------------------- /Chapter07/Ch07_02/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter07/Ch07_02/stdafx.h -------------------------------------------------------------------------------- /Chapter07/Ch07_02/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter07/Ch07_02/targetver.h -------------------------------------------------------------------------------- /Chapter07/Ch07_03/Ch07_03.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter07/Ch07_03/Ch07_03.cpp -------------------------------------------------------------------------------- /Chapter07/Ch07_03/Ch07_03.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter07/Ch07_03/Ch07_03.vcxproj -------------------------------------------------------------------------------- /Chapter07/Ch07_03/Ch07_03.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter07/Ch07_03/Ch07_03.vcxproj.user -------------------------------------------------------------------------------- /Chapter07/Ch07_03/Ch07_03_.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter07/Ch07_03/Ch07_03_.asm -------------------------------------------------------------------------------- /Chapter07/Ch07_03/Ch07_03a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter07/Ch07_03/Ch07_03a.cpp -------------------------------------------------------------------------------- /Chapter07/Ch07_03/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter07/Ch07_03/stdafx.cpp -------------------------------------------------------------------------------- /Chapter07/Ch07_03/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter07/Ch07_03/stdafx.h -------------------------------------------------------------------------------- /Chapter07/Ch07_03/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter07/Ch07_03/targetver.h -------------------------------------------------------------------------------- /Chapter07/Ch07_04/Ch07_04.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter07/Ch07_04/Ch07_04.cpp -------------------------------------------------------------------------------- /Chapter07/Ch07_04/Ch07_04.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter07/Ch07_04/Ch07_04.h -------------------------------------------------------------------------------- /Chapter07/Ch07_04/Ch07_04.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter07/Ch07_04/Ch07_04.vcxproj -------------------------------------------------------------------------------- /Chapter07/Ch07_04/Ch07_04.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter07/Ch07_04/Ch07_04.vcxproj.user -------------------------------------------------------------------------------- /Chapter07/Ch07_04/Ch07_04_.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter07/Ch07_04/Ch07_04_.asm -------------------------------------------------------------------------------- /Chapter07/Ch07_04/Ch07_04_BM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter07/Ch07_04/Ch07_04_BM.cpp -------------------------------------------------------------------------------- /Chapter07/Ch07_04/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter07/Ch07_04/stdafx.cpp -------------------------------------------------------------------------------- /Chapter07/Ch07_04/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter07/Ch07_04/stdafx.h -------------------------------------------------------------------------------- /Chapter07/Ch07_04/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter07/Ch07_04/targetver.h -------------------------------------------------------------------------------- /Chapter07/Ch07_05/Ch07_05.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter07/Ch07_05/Ch07_05.cpp -------------------------------------------------------------------------------- /Chapter07/Ch07_05/Ch07_05.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter07/Ch07_05/Ch07_05.h -------------------------------------------------------------------------------- /Chapter07/Ch07_05/Ch07_05.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter07/Ch07_05/Ch07_05.vcxproj -------------------------------------------------------------------------------- /Chapter07/Ch07_05/Ch07_05.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter07/Ch07_05/Ch07_05.vcxproj.user -------------------------------------------------------------------------------- /Chapter07/Ch07_05/Ch07_05_.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter07/Ch07_05/Ch07_05_.asm -------------------------------------------------------------------------------- /Chapter07/Ch07_05/Ch07_05_BM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter07/Ch07_05/Ch07_05_BM.cpp -------------------------------------------------------------------------------- /Chapter07/Ch07_05/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter07/Ch07_05/stdafx.cpp -------------------------------------------------------------------------------- /Chapter07/Ch07_05/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter07/Ch07_05/stdafx.h -------------------------------------------------------------------------------- /Chapter07/Ch07_05/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter07/Ch07_05/targetver.h -------------------------------------------------------------------------------- /Chapter07/Ch07_06/Ch07_06.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter07/Ch07_06/Ch07_06.cpp -------------------------------------------------------------------------------- /Chapter07/Ch07_06/Ch07_06.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter07/Ch07_06/Ch07_06.vcxproj -------------------------------------------------------------------------------- /Chapter07/Ch07_06/Ch07_06.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter07/Ch07_06/Ch07_06.vcxproj.user -------------------------------------------------------------------------------- /Chapter07/Ch07_06/Ch07_06_.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter07/Ch07_06/Ch07_06_.asm -------------------------------------------------------------------------------- /Chapter07/Ch07_06/Ch07_06_Misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter07/Ch07_06/Ch07_06_Misc.cpp -------------------------------------------------------------------------------- /Chapter07/Ch07_06/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter07/Ch07_06/stdafx.cpp -------------------------------------------------------------------------------- /Chapter07/Ch07_06/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter07/Ch07_06/stdafx.h -------------------------------------------------------------------------------- /Chapter07/Ch07_06/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter07/Ch07_06/targetver.h -------------------------------------------------------------------------------- /Chapter07/Ch07_07/Ch07_07.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter07/Ch07_07/Ch07_07.cpp -------------------------------------------------------------------------------- /Chapter07/Ch07_07/Ch07_07.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter07/Ch07_07/Ch07_07.h -------------------------------------------------------------------------------- /Chapter07/Ch07_07/Ch07_07.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter07/Ch07_07/Ch07_07.vcxproj -------------------------------------------------------------------------------- /Chapter07/Ch07_07/Ch07_07.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter07/Ch07_07/Ch07_07.vcxproj.user -------------------------------------------------------------------------------- /Chapter07/Ch07_07/Ch07_07_.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter07/Ch07_07/Ch07_07_.asm -------------------------------------------------------------------------------- /Chapter07/Ch07_07/Ch07_07_BM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter07/Ch07_07/Ch07_07_BM.cpp -------------------------------------------------------------------------------- /Chapter07/Ch07_07/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter07/Ch07_07/stdafx.cpp -------------------------------------------------------------------------------- /Chapter07/Ch07_07/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter07/Ch07_07/stdafx.h -------------------------------------------------------------------------------- /Chapter07/Ch07_07/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter07/Ch07_07/targetver.h -------------------------------------------------------------------------------- /Chapter07/Ch07_08/Ch07_08.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter07/Ch07_08/Ch07_08.cpp -------------------------------------------------------------------------------- /Chapter07/Ch07_08/Ch07_08.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter07/Ch07_08/Ch07_08.h -------------------------------------------------------------------------------- /Chapter07/Ch07_08/Ch07_08.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter07/Ch07_08/Ch07_08.vcxproj -------------------------------------------------------------------------------- /Chapter07/Ch07_08/Ch07_08.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter07/Ch07_08/Ch07_08.vcxproj.user -------------------------------------------------------------------------------- /Chapter07/Ch07_08/Ch07_08_.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter07/Ch07_08/Ch07_08_.asm -------------------------------------------------------------------------------- /Chapter07/Ch07_08/Ch07_08_BM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter07/Ch07_08/Ch07_08_BM.cpp -------------------------------------------------------------------------------- /Chapter07/Ch07_08/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter07/Ch07_08/stdafx.cpp -------------------------------------------------------------------------------- /Chapter07/Ch07_08/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter07/Ch07_08/stdafx.h -------------------------------------------------------------------------------- /Chapter07/Ch07_08/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter07/Ch07_08/targetver.h -------------------------------------------------------------------------------- /Chapter07/Ch07_Data/TestImage1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter07/Ch07_Data/TestImage1.bmp -------------------------------------------------------------------------------- /Chapter07/Ch07_Data/TestImage2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter07/Ch07_Data/TestImage2.bmp -------------------------------------------------------------------------------- /Chapter07/Ch07_Data/TestImage3.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter07/Ch07_Data/TestImage3.bmp -------------------------------------------------------------------------------- /Chapter07/Ch07_Include/AlignedMem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter07/Ch07_Include/AlignedMem.h -------------------------------------------------------------------------------- /Chapter07/Ch07_Include/BmThreadTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter07/Ch07_Include/BmThreadTimer.h -------------------------------------------------------------------------------- /Chapter07/Ch07_Include/ImageMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter07/Ch07_Include/ImageMatrix.h -------------------------------------------------------------------------------- /Chapter07/Ch07_Include/Matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter07/Ch07_Include/Matrix.h -------------------------------------------------------------------------------- /Chapter07/Ch07_Include/OS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter07/Ch07_Include/OS.h -------------------------------------------------------------------------------- /Chapter07/Ch07_Include/Vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter07/Ch07_Include/Vector.h -------------------------------------------------------------------------------- /Chapter07/Ch07_Include/XmmVal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter07/Ch07_Include/XmmVal.h -------------------------------------------------------------------------------- /Chapter07/Ch07_Include/YmmVal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter07/Ch07_Include/YmmVal.h -------------------------------------------------------------------------------- /Chapter07/Ch07_Include/ZmmVal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter07/Ch07_Include/ZmmVal.h -------------------------------------------------------------------------------- /Chapter07/Ch07_Include/cmpequ.asmh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter07/Ch07_Include/cmpequ.asmh -------------------------------------------------------------------------------- /Chapter07/Chapter07.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter07/Chapter07.sln -------------------------------------------------------------------------------- /Chapter09/Ch09_01/Ch09_01.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter09/Ch09_01/Ch09_01.cpp -------------------------------------------------------------------------------- /Chapter09/Ch09_01/Ch09_01.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter09/Ch09_01/Ch09_01.vcxproj -------------------------------------------------------------------------------- /Chapter09/Ch09_01/Ch09_01.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter09/Ch09_01/Ch09_01.vcxproj.user -------------------------------------------------------------------------------- /Chapter09/Ch09_01/Ch09_01_.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter09/Ch09_01/Ch09_01_.asm -------------------------------------------------------------------------------- /Chapter09/Ch09_01/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter09/Ch09_01/stdafx.cpp -------------------------------------------------------------------------------- /Chapter09/Ch09_01/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter09/Ch09_01/stdafx.h -------------------------------------------------------------------------------- /Chapter09/Ch09_01/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter09/Ch09_01/targetver.h -------------------------------------------------------------------------------- /Chapter09/Ch09_02/Ch09_02.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter09/Ch09_02/Ch09_02.cpp -------------------------------------------------------------------------------- /Chapter09/Ch09_02/Ch09_02.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter09/Ch09_02/Ch09_02.vcxproj -------------------------------------------------------------------------------- /Chapter09/Ch09_02/Ch09_02.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter09/Ch09_02/Ch09_02.vcxproj.user -------------------------------------------------------------------------------- /Chapter09/Ch09_02/Ch09_02_.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter09/Ch09_02/Ch09_02_.asm -------------------------------------------------------------------------------- /Chapter09/Ch09_02/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter09/Ch09_02/stdafx.cpp -------------------------------------------------------------------------------- /Chapter09/Ch09_02/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter09/Ch09_02/stdafx.h -------------------------------------------------------------------------------- /Chapter09/Ch09_02/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter09/Ch09_02/targetver.h -------------------------------------------------------------------------------- /Chapter09/Ch09_03/Ch09_03.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter09/Ch09_03/Ch09_03.cpp -------------------------------------------------------------------------------- /Chapter09/Ch09_03/Ch09_03.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter09/Ch09_03/Ch09_03.vcxproj -------------------------------------------------------------------------------- /Chapter09/Ch09_03/Ch09_03.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter09/Ch09_03/Ch09_03.vcxproj.user -------------------------------------------------------------------------------- /Chapter09/Ch09_03/Ch09_03_.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter09/Ch09_03/Ch09_03_.asm -------------------------------------------------------------------------------- /Chapter09/Ch09_03/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter09/Ch09_03/stdafx.cpp -------------------------------------------------------------------------------- /Chapter09/Ch09_03/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter09/Ch09_03/stdafx.h -------------------------------------------------------------------------------- /Chapter09/Ch09_03/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter09/Ch09_03/targetver.h -------------------------------------------------------------------------------- /Chapter09/Ch09_04/Ch09_04.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter09/Ch09_04/Ch09_04.cpp -------------------------------------------------------------------------------- /Chapter09/Ch09_04/Ch09_04.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter09/Ch09_04/Ch09_04.vcxproj -------------------------------------------------------------------------------- /Chapter09/Ch09_04/Ch09_04.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter09/Ch09_04/Ch09_04.vcxproj.user -------------------------------------------------------------------------------- /Chapter09/Ch09_04/Ch09_04_.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter09/Ch09_04/Ch09_04_.asm -------------------------------------------------------------------------------- /Chapter09/Ch09_04/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter09/Ch09_04/stdafx.cpp -------------------------------------------------------------------------------- /Chapter09/Ch09_04/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter09/Ch09_04/stdafx.h -------------------------------------------------------------------------------- /Chapter09/Ch09_04/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter09/Ch09_04/targetver.h -------------------------------------------------------------------------------- /Chapter09/Ch09_05/Ch09_05.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter09/Ch09_05/Ch09_05.cpp -------------------------------------------------------------------------------- /Chapter09/Ch09_05/Ch09_05.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter09/Ch09_05/Ch09_05.h -------------------------------------------------------------------------------- /Chapter09/Ch09_05/Ch09_05.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter09/Ch09_05/Ch09_05.vcxproj -------------------------------------------------------------------------------- /Chapter09/Ch09_05/Ch09_05.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter09/Ch09_05/Ch09_05.vcxproj.user -------------------------------------------------------------------------------- /Chapter09/Ch09_05/Ch09_05_.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter09/Ch09_05/Ch09_05_.asm -------------------------------------------------------------------------------- /Chapter09/Ch09_05/Ch09_05_BM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter09/Ch09_05/Ch09_05_BM.cpp -------------------------------------------------------------------------------- /Chapter09/Ch09_05/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter09/Ch09_05/stdafx.cpp -------------------------------------------------------------------------------- /Chapter09/Ch09_05/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter09/Ch09_05/stdafx.h -------------------------------------------------------------------------------- /Chapter09/Ch09_05/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter09/Ch09_05/targetver.h -------------------------------------------------------------------------------- /Chapter09/Ch09_06/Ch09_06.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter09/Ch09_06/Ch09_06.cpp -------------------------------------------------------------------------------- /Chapter09/Ch09_06/Ch09_06.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter09/Ch09_06/Ch09_06.h -------------------------------------------------------------------------------- /Chapter09/Ch09_06/Ch09_06.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter09/Ch09_06/Ch09_06.vcxproj -------------------------------------------------------------------------------- /Chapter09/Ch09_06/Ch09_06.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter09/Ch09_06/Ch09_06.vcxproj.user -------------------------------------------------------------------------------- /Chapter09/Ch09_06/Ch09_06_.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter09/Ch09_06/Ch09_06_.asm -------------------------------------------------------------------------------- /Chapter09/Ch09_06/Ch09_06_BM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter09/Ch09_06/Ch09_06_BM.cpp -------------------------------------------------------------------------------- /Chapter09/Ch09_06/Ch09_06_Test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter09/Ch09_06/Ch09_06_Test.cpp -------------------------------------------------------------------------------- /Chapter09/Ch09_06/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter09/Ch09_06/stdafx.cpp -------------------------------------------------------------------------------- /Chapter09/Ch09_06/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter09/Ch09_06/stdafx.h -------------------------------------------------------------------------------- /Chapter09/Ch09_06/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter09/Ch09_06/targetver.h -------------------------------------------------------------------------------- /Chapter09/Ch09_07/Ch09_07.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter09/Ch09_07/Ch09_07.cpp -------------------------------------------------------------------------------- /Chapter09/Ch09_07/Ch09_07.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter09/Ch09_07/Ch09_07.vcxproj -------------------------------------------------------------------------------- /Chapter09/Ch09_07/Ch09_07.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter09/Ch09_07/Ch09_07.vcxproj.user -------------------------------------------------------------------------------- /Chapter09/Ch09_07/Ch09_07_.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter09/Ch09_07/Ch09_07_.asm -------------------------------------------------------------------------------- /Chapter09/Ch09_07/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter09/Ch09_07/stdafx.cpp -------------------------------------------------------------------------------- /Chapter09/Ch09_07/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter09/Ch09_07/stdafx.h -------------------------------------------------------------------------------- /Chapter09/Ch09_07/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter09/Ch09_07/targetver.h -------------------------------------------------------------------------------- /Chapter09/Ch09_08/Ch09_08.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter09/Ch09_08/Ch09_08.cpp -------------------------------------------------------------------------------- /Chapter09/Ch09_08/Ch09_08.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter09/Ch09_08/Ch09_08.vcxproj -------------------------------------------------------------------------------- /Chapter09/Ch09_08/Ch09_08.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter09/Ch09_08/Ch09_08.vcxproj.user -------------------------------------------------------------------------------- /Chapter09/Ch09_08/Ch09_08_.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter09/Ch09_08/Ch09_08_.asm -------------------------------------------------------------------------------- /Chapter09/Ch09_08/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter09/Ch09_08/stdafx.cpp -------------------------------------------------------------------------------- /Chapter09/Ch09_08/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter09/Ch09_08/stdafx.h -------------------------------------------------------------------------------- /Chapter09/Ch09_08/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter09/Ch09_08/targetver.h -------------------------------------------------------------------------------- /Chapter09/Ch09_Include/AlignedMem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter09/Ch09_Include/AlignedMem.h -------------------------------------------------------------------------------- /Chapter09/Ch09_Include/BmThreadTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter09/Ch09_Include/BmThreadTimer.h -------------------------------------------------------------------------------- /Chapter09/Ch09_Include/ImageMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter09/Ch09_Include/ImageMatrix.h -------------------------------------------------------------------------------- /Chapter09/Ch09_Include/Matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter09/Ch09_Include/Matrix.h -------------------------------------------------------------------------------- /Chapter09/Ch09_Include/OS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter09/Ch09_Include/OS.h -------------------------------------------------------------------------------- /Chapter09/Ch09_Include/Vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter09/Ch09_Include/Vector.h -------------------------------------------------------------------------------- /Chapter09/Ch09_Include/XmmVal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter09/Ch09_Include/XmmVal.h -------------------------------------------------------------------------------- /Chapter09/Ch09_Include/YmmVal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter09/Ch09_Include/YmmVal.h -------------------------------------------------------------------------------- /Chapter09/Ch09_Include/ZmmVal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter09/Ch09_Include/ZmmVal.h -------------------------------------------------------------------------------- /Chapter09/Ch09_Include/cmpequ.asmh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter09/Ch09_Include/cmpequ.asmh -------------------------------------------------------------------------------- /Chapter09/Chapter09.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter09/Chapter09.sln -------------------------------------------------------------------------------- /Chapter10/Ch10_01/Ch10_01.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter10/Ch10_01/Ch10_01.cpp -------------------------------------------------------------------------------- /Chapter10/Ch10_01/Ch10_01.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter10/Ch10_01/Ch10_01.vcxproj -------------------------------------------------------------------------------- /Chapter10/Ch10_01/Ch10_01.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter10/Ch10_01/Ch10_01.vcxproj.user -------------------------------------------------------------------------------- /Chapter10/Ch10_01/Ch10_01_.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter10/Ch10_01/Ch10_01_.asm -------------------------------------------------------------------------------- /Chapter10/Ch10_01/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter10/Ch10_01/stdafx.cpp -------------------------------------------------------------------------------- /Chapter10/Ch10_01/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter10/Ch10_01/stdafx.h -------------------------------------------------------------------------------- /Chapter10/Ch10_01/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter10/Ch10_01/targetver.h -------------------------------------------------------------------------------- /Chapter10/Ch10_02/Ch10_02.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter10/Ch10_02/Ch10_02.cpp -------------------------------------------------------------------------------- /Chapter10/Ch10_02/Ch10_02.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter10/Ch10_02/Ch10_02.vcxproj -------------------------------------------------------------------------------- /Chapter10/Ch10_02/Ch10_02.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter10/Ch10_02/Ch10_02.vcxproj.user -------------------------------------------------------------------------------- /Chapter10/Ch10_02/Ch10_02_.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter10/Ch10_02/Ch10_02_.asm -------------------------------------------------------------------------------- /Chapter10/Ch10_02/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter10/Ch10_02/stdafx.cpp -------------------------------------------------------------------------------- /Chapter10/Ch10_02/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter10/Ch10_02/stdafx.h -------------------------------------------------------------------------------- /Chapter10/Ch10_02/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter10/Ch10_02/targetver.h -------------------------------------------------------------------------------- /Chapter10/Ch10_03/Ch10_03.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter10/Ch10_03/Ch10_03.cpp -------------------------------------------------------------------------------- /Chapter10/Ch10_03/Ch10_03.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter10/Ch10_03/Ch10_03.vcxproj -------------------------------------------------------------------------------- /Chapter10/Ch10_03/Ch10_03.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter10/Ch10_03/Ch10_03.vcxproj.user -------------------------------------------------------------------------------- /Chapter10/Ch10_03/Ch10_03_.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter10/Ch10_03/Ch10_03_.asm -------------------------------------------------------------------------------- /Chapter10/Ch10_03/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter10/Ch10_03/stdafx.cpp -------------------------------------------------------------------------------- /Chapter10/Ch10_03/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter10/Ch10_03/stdafx.h -------------------------------------------------------------------------------- /Chapter10/Ch10_03/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter10/Ch10_03/targetver.h -------------------------------------------------------------------------------- /Chapter10/Ch10_04/Ch10_04.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter10/Ch10_04/Ch10_04.cpp -------------------------------------------------------------------------------- /Chapter10/Ch10_04/Ch10_04.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter10/Ch10_04/Ch10_04.h -------------------------------------------------------------------------------- /Chapter10/Ch10_04/Ch10_04.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter10/Ch10_04/Ch10_04.vcxproj -------------------------------------------------------------------------------- /Chapter10/Ch10_04/Ch10_04.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter10/Ch10_04/Ch10_04.vcxproj.user -------------------------------------------------------------------------------- /Chapter10/Ch10_04/Ch10_04_.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter10/Ch10_04/Ch10_04_.asm -------------------------------------------------------------------------------- /Chapter10/Ch10_04/Ch10_04_BM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter10/Ch10_04/Ch10_04_BM.cpp -------------------------------------------------------------------------------- /Chapter10/Ch10_04/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter10/Ch10_04/stdafx.cpp -------------------------------------------------------------------------------- /Chapter10/Ch10_04/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter10/Ch10_04/stdafx.h -------------------------------------------------------------------------------- /Chapter10/Ch10_04/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter10/Ch10_04/targetver.h -------------------------------------------------------------------------------- /Chapter10/Ch10_05/Ch10_05.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter10/Ch10_05/Ch10_05.cpp -------------------------------------------------------------------------------- /Chapter10/Ch10_05/Ch10_05.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter10/Ch10_05/Ch10_05.vcxproj -------------------------------------------------------------------------------- /Chapter10/Ch10_05/Ch10_05.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter10/Ch10_05/Ch10_05.vcxproj.user -------------------------------------------------------------------------------- /Chapter10/Ch10_05/Ch10_05_.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter10/Ch10_05/Ch10_05_.asm -------------------------------------------------------------------------------- /Chapter10/Ch10_05/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter10/Ch10_05/stdafx.cpp -------------------------------------------------------------------------------- /Chapter10/Ch10_05/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter10/Ch10_05/stdafx.h -------------------------------------------------------------------------------- /Chapter10/Ch10_05/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter10/Ch10_05/targetver.h -------------------------------------------------------------------------------- /Chapter10/Ch10_06/Ch10_06.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter10/Ch10_06/Ch10_06.cpp -------------------------------------------------------------------------------- /Chapter10/Ch10_06/Ch10_06.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter10/Ch10_06/Ch10_06.h -------------------------------------------------------------------------------- /Chapter10/Ch10_06/Ch10_06.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter10/Ch10_06/Ch10_06.vcxproj -------------------------------------------------------------------------------- /Chapter10/Ch10_06/Ch10_06.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter10/Ch10_06/Ch10_06.vcxproj.user -------------------------------------------------------------------------------- /Chapter10/Ch10_06/Ch10_06_.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter10/Ch10_06/Ch10_06_.asm -------------------------------------------------------------------------------- /Chapter10/Ch10_06/Ch10_06_BM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter10/Ch10_06/Ch10_06_BM.cpp -------------------------------------------------------------------------------- /Chapter10/Ch10_06/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter10/Ch10_06/stdafx.cpp -------------------------------------------------------------------------------- /Chapter10/Ch10_06/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter10/Ch10_06/stdafx.h -------------------------------------------------------------------------------- /Chapter10/Ch10_06/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter10/Ch10_06/targetver.h -------------------------------------------------------------------------------- /Chapter10/Ch10_Data/TestImage1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter10/Ch10_Data/TestImage1.bmp -------------------------------------------------------------------------------- /Chapter10/Ch10_Data/TestImage2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter10/Ch10_Data/TestImage2.bmp -------------------------------------------------------------------------------- /Chapter10/Ch10_Data/TestImage3.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter10/Ch10_Data/TestImage3.bmp -------------------------------------------------------------------------------- /Chapter10/Ch10_Include/AlignedMem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter10/Ch10_Include/AlignedMem.h -------------------------------------------------------------------------------- /Chapter10/Ch10_Include/BmThreadTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter10/Ch10_Include/BmThreadTimer.h -------------------------------------------------------------------------------- /Chapter10/Ch10_Include/ImageMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter10/Ch10_Include/ImageMatrix.h -------------------------------------------------------------------------------- /Chapter10/Ch10_Include/Matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter10/Ch10_Include/Matrix.h -------------------------------------------------------------------------------- /Chapter10/Ch10_Include/OS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter10/Ch10_Include/OS.h -------------------------------------------------------------------------------- /Chapter10/Ch10_Include/Vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter10/Ch10_Include/Vector.h -------------------------------------------------------------------------------- /Chapter10/Ch10_Include/XmmVal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter10/Ch10_Include/XmmVal.h -------------------------------------------------------------------------------- /Chapter10/Ch10_Include/YmmVal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter10/Ch10_Include/YmmVal.h -------------------------------------------------------------------------------- /Chapter10/Ch10_Include/ZmmVal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter10/Ch10_Include/ZmmVal.h -------------------------------------------------------------------------------- /Chapter10/Ch10_Include/cmpequ.asmh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter10/Ch10_Include/cmpequ.asmh -------------------------------------------------------------------------------- /Chapter10/Chapter10.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter10/Chapter10.sln -------------------------------------------------------------------------------- /Chapter11/Ch11_01/Ch11_01.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter11/Ch11_01/Ch11_01.cpp -------------------------------------------------------------------------------- /Chapter11/Ch11_01/Ch11_01.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter11/Ch11_01/Ch11_01.h -------------------------------------------------------------------------------- /Chapter11/Ch11_01/Ch11_01.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter11/Ch11_01/Ch11_01.vcxproj -------------------------------------------------------------------------------- /Chapter11/Ch11_01/Ch11_01.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter11/Ch11_01/Ch11_01.vcxproj.user -------------------------------------------------------------------------------- /Chapter11/Ch11_01/Ch11_01_.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter11/Ch11_01/Ch11_01_.asm -------------------------------------------------------------------------------- /Chapter11/Ch11_01/Ch11_01_BM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter11/Ch11_01/Ch11_01_BM.cpp -------------------------------------------------------------------------------- /Chapter11/Ch11_01/Ch11_01_Misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter11/Ch11_01/Ch11_01_Misc.cpp -------------------------------------------------------------------------------- /Chapter11/Ch11_01/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter11/Ch11_01/stdafx.cpp -------------------------------------------------------------------------------- /Chapter11/Ch11_01/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter11/Ch11_01/stdafx.h -------------------------------------------------------------------------------- /Chapter11/Ch11_01/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter11/Ch11_01/targetver.h -------------------------------------------------------------------------------- /Chapter11/Ch11_02/Ch11_02.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter11/Ch11_02/Ch11_02.cpp -------------------------------------------------------------------------------- /Chapter11/Ch11_02/Ch11_02.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter11/Ch11_02/Ch11_02.h -------------------------------------------------------------------------------- /Chapter11/Ch11_02/Ch11_02.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter11/Ch11_02/Ch11_02.vcxproj -------------------------------------------------------------------------------- /Chapter11/Ch11_02/Ch11_02.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter11/Ch11_02/Ch11_02.vcxproj.user -------------------------------------------------------------------------------- /Chapter11/Ch11_02/Ch11_02_.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter11/Ch11_02/Ch11_02_.asm -------------------------------------------------------------------------------- /Chapter11/Ch11_02/Ch11_02_BM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter11/Ch11_02/Ch11_02_BM.cpp -------------------------------------------------------------------------------- /Chapter11/Ch11_02/Ch11_02_Misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter11/Ch11_02/Ch11_02_Misc.cpp -------------------------------------------------------------------------------- /Chapter11/Ch11_02/Ch11_02_Test_.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter11/Ch11_02/Ch11_02_Test_.asm -------------------------------------------------------------------------------- /Chapter11/Ch11_02/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter11/Ch11_02/stdafx.cpp -------------------------------------------------------------------------------- /Chapter11/Ch11_02/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter11/Ch11_02/stdafx.h -------------------------------------------------------------------------------- /Chapter11/Ch11_02/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter11/Ch11_02/targetver.h -------------------------------------------------------------------------------- /Chapter11/Ch11_03/Ch11_03.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter11/Ch11_03/Ch11_03.cpp -------------------------------------------------------------------------------- /Chapter11/Ch11_03/Ch11_03.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter11/Ch11_03/Ch11_03.vcxproj -------------------------------------------------------------------------------- /Chapter11/Ch11_03/Ch11_03.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter11/Ch11_03/Ch11_03.vcxproj.user -------------------------------------------------------------------------------- /Chapter11/Ch11_03/Ch11_03_.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter11/Ch11_03/Ch11_03_.asm -------------------------------------------------------------------------------- /Chapter11/Ch11_03/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter11/Ch11_03/stdafx.cpp -------------------------------------------------------------------------------- /Chapter11/Ch11_03/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter11/Ch11_03/stdafx.h -------------------------------------------------------------------------------- /Chapter11/Ch11_03/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter11/Ch11_03/targetver.h -------------------------------------------------------------------------------- /Chapter11/Ch11_04/Ch11_04.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter11/Ch11_04/Ch11_04.cpp -------------------------------------------------------------------------------- /Chapter11/Ch11_04/Ch11_04.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter11/Ch11_04/Ch11_04.vcxproj -------------------------------------------------------------------------------- /Chapter11/Ch11_04/Ch11_04.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter11/Ch11_04/Ch11_04.vcxproj.user -------------------------------------------------------------------------------- /Chapter11/Ch11_04/Ch11_04_.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter11/Ch11_04/Ch11_04_.asm -------------------------------------------------------------------------------- /Chapter11/Ch11_04/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter11/Ch11_04/stdafx.cpp -------------------------------------------------------------------------------- /Chapter11/Ch11_04/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter11/Ch11_04/stdafx.h -------------------------------------------------------------------------------- /Chapter11/Ch11_04/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter11/Ch11_04/targetver.h -------------------------------------------------------------------------------- /Chapter11/Ch11_05/Ch11_05.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter11/Ch11_05/Ch11_05.cpp -------------------------------------------------------------------------------- /Chapter11/Ch11_05/Ch11_05.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter11/Ch11_05/Ch11_05.vcxproj -------------------------------------------------------------------------------- /Chapter11/Ch11_05/Ch11_05.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter11/Ch11_05/Ch11_05.vcxproj.user -------------------------------------------------------------------------------- /Chapter11/Ch11_05/Ch11_05_.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter11/Ch11_05/Ch11_05_.asm -------------------------------------------------------------------------------- /Chapter11/Ch11_05/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter11/Ch11_05/stdafx.cpp -------------------------------------------------------------------------------- /Chapter11/Ch11_05/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter11/Ch11_05/stdafx.h -------------------------------------------------------------------------------- /Chapter11/Ch11_05/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter11/Ch11_05/targetver.h -------------------------------------------------------------------------------- /Chapter11/Ch11_Include/AlignedMem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter11/Ch11_Include/AlignedMem.h -------------------------------------------------------------------------------- /Chapter11/Ch11_Include/BmThreadTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter11/Ch11_Include/BmThreadTimer.h -------------------------------------------------------------------------------- /Chapter11/Ch11_Include/ImageMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter11/Ch11_Include/ImageMatrix.h -------------------------------------------------------------------------------- /Chapter11/Ch11_Include/Matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter11/Ch11_Include/Matrix.h -------------------------------------------------------------------------------- /Chapter11/Ch11_Include/OS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter11/Ch11_Include/OS.h -------------------------------------------------------------------------------- /Chapter11/Ch11_Include/Vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter11/Ch11_Include/Vector.h -------------------------------------------------------------------------------- /Chapter11/Ch11_Include/XmmVal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter11/Ch11_Include/XmmVal.h -------------------------------------------------------------------------------- /Chapter11/Ch11_Include/YmmVal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter11/Ch11_Include/YmmVal.h -------------------------------------------------------------------------------- /Chapter11/Ch11_Include/ZmmVal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter11/Ch11_Include/ZmmVal.h -------------------------------------------------------------------------------- /Chapter11/Ch11_Include/cmpequ.asmh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter11/Ch11_Include/cmpequ.asmh -------------------------------------------------------------------------------- /Chapter11/Chapter11.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter11/Chapter11.sln -------------------------------------------------------------------------------- /Chapter13/Ch13_01/Ch13_01.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter13/Ch13_01/Ch13_01.cpp -------------------------------------------------------------------------------- /Chapter13/Ch13_01/Ch13_01.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter13/Ch13_01/Ch13_01.vcxproj -------------------------------------------------------------------------------- /Chapter13/Ch13_01/Ch13_01.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter13/Ch13_01/Ch13_01.vcxproj.user -------------------------------------------------------------------------------- /Chapter13/Ch13_01/Ch13_01_.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter13/Ch13_01/Ch13_01_.asm -------------------------------------------------------------------------------- /Chapter13/Ch13_01/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter13/Ch13_01/stdafx.cpp -------------------------------------------------------------------------------- /Chapter13/Ch13_01/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter13/Ch13_01/stdafx.h -------------------------------------------------------------------------------- /Chapter13/Ch13_01/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter13/Ch13_01/targetver.h -------------------------------------------------------------------------------- /Chapter13/Ch13_02/Ch13_02.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter13/Ch13_02/Ch13_02.cpp -------------------------------------------------------------------------------- /Chapter13/Ch13_02/Ch13_02.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter13/Ch13_02/Ch13_02.vcxproj -------------------------------------------------------------------------------- /Chapter13/Ch13_02/Ch13_02.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter13/Ch13_02/Ch13_02.vcxproj.user -------------------------------------------------------------------------------- /Chapter13/Ch13_02/Ch13_02_.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter13/Ch13_02/Ch13_02_.asm -------------------------------------------------------------------------------- /Chapter13/Ch13_02/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter13/Ch13_02/stdafx.cpp -------------------------------------------------------------------------------- /Chapter13/Ch13_02/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter13/Ch13_02/stdafx.h -------------------------------------------------------------------------------- /Chapter13/Ch13_02/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter13/Ch13_02/targetver.h -------------------------------------------------------------------------------- /Chapter13/Ch13_03/Ch13_03.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter13/Ch13_03/Ch13_03.cpp -------------------------------------------------------------------------------- /Chapter13/Ch13_03/Ch13_03.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter13/Ch13_03/Ch13_03.vcxproj -------------------------------------------------------------------------------- /Chapter13/Ch13_03/Ch13_03.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter13/Ch13_03/Ch13_03.vcxproj.user -------------------------------------------------------------------------------- /Chapter13/Ch13_03/Ch13_03_.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter13/Ch13_03/Ch13_03_.asm -------------------------------------------------------------------------------- /Chapter13/Ch13_03/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter13/Ch13_03/stdafx.cpp -------------------------------------------------------------------------------- /Chapter13/Ch13_03/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter13/Ch13_03/stdafx.h -------------------------------------------------------------------------------- /Chapter13/Ch13_03/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter13/Ch13_03/targetver.h -------------------------------------------------------------------------------- /Chapter13/Ch13_04/Ch13_04.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter13/Ch13_04/Ch13_04.cpp -------------------------------------------------------------------------------- /Chapter13/Ch13_04/Ch13_04.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter13/Ch13_04/Ch13_04.vcxproj -------------------------------------------------------------------------------- /Chapter13/Ch13_04/Ch13_04.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter13/Ch13_04/Ch13_04.vcxproj.user -------------------------------------------------------------------------------- /Chapter13/Ch13_04/Ch13_04_.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter13/Ch13_04/Ch13_04_.asm -------------------------------------------------------------------------------- /Chapter13/Ch13_04/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter13/Ch13_04/stdafx.cpp -------------------------------------------------------------------------------- /Chapter13/Ch13_04/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter13/Ch13_04/stdafx.h -------------------------------------------------------------------------------- /Chapter13/Ch13_04/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter13/Ch13_04/targetver.h -------------------------------------------------------------------------------- /Chapter13/Ch13_05/Ch13_05.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter13/Ch13_05/Ch13_05.cpp -------------------------------------------------------------------------------- /Chapter13/Ch13_05/Ch13_05.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter13/Ch13_05/Ch13_05.vcxproj -------------------------------------------------------------------------------- /Chapter13/Ch13_05/Ch13_05.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter13/Ch13_05/Ch13_05.vcxproj.user -------------------------------------------------------------------------------- /Chapter13/Ch13_05/Ch13_05_.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter13/Ch13_05/Ch13_05_.asm -------------------------------------------------------------------------------- /Chapter13/Ch13_05/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter13/Ch13_05/stdafx.cpp -------------------------------------------------------------------------------- /Chapter13/Ch13_05/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter13/Ch13_05/stdafx.h -------------------------------------------------------------------------------- /Chapter13/Ch13_05/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter13/Ch13_05/targetver.h -------------------------------------------------------------------------------- /Chapter13/Ch13_06/Ch13_06.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter13/Ch13_06/Ch13_06.cpp -------------------------------------------------------------------------------- /Chapter13/Ch13_06/Ch13_06.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter13/Ch13_06/Ch13_06.vcxproj -------------------------------------------------------------------------------- /Chapter13/Ch13_06/Ch13_06.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter13/Ch13_06/Ch13_06.vcxproj.user -------------------------------------------------------------------------------- /Chapter13/Ch13_06/Ch13_06_.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter13/Ch13_06/Ch13_06_.asm -------------------------------------------------------------------------------- /Chapter13/Ch13_06/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter13/Ch13_06/stdafx.cpp -------------------------------------------------------------------------------- /Chapter13/Ch13_06/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter13/Ch13_06/stdafx.h -------------------------------------------------------------------------------- /Chapter13/Ch13_06/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter13/Ch13_06/targetver.h -------------------------------------------------------------------------------- /Chapter13/Ch13_07/Ch13_07.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter13/Ch13_07/Ch13_07.cpp -------------------------------------------------------------------------------- /Chapter13/Ch13_07/Ch13_07.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter13/Ch13_07/Ch13_07.h -------------------------------------------------------------------------------- /Chapter13/Ch13_07/Ch13_07.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter13/Ch13_07/Ch13_07.vcxproj -------------------------------------------------------------------------------- /Chapter13/Ch13_07/Ch13_07.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter13/Ch13_07/Ch13_07.vcxproj.user -------------------------------------------------------------------------------- /Chapter13/Ch13_07/Ch13_07_.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter13/Ch13_07/Ch13_07_.asm -------------------------------------------------------------------------------- /Chapter13/Ch13_07/Ch13_07_BM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter13/Ch13_07/Ch13_07_BM.cpp -------------------------------------------------------------------------------- /Chapter13/Ch13_07/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter13/Ch13_07/stdafx.cpp -------------------------------------------------------------------------------- /Chapter13/Ch13_07/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter13/Ch13_07/stdafx.h -------------------------------------------------------------------------------- /Chapter13/Ch13_07/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter13/Ch13_07/targetver.h -------------------------------------------------------------------------------- /Chapter13/Ch13_08/Ch13_08.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter13/Ch13_08/Ch13_08.cpp -------------------------------------------------------------------------------- /Chapter13/Ch13_08/Ch13_08.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter13/Ch13_08/Ch13_08.h -------------------------------------------------------------------------------- /Chapter13/Ch13_08/Ch13_08.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter13/Ch13_08/Ch13_08.vcxproj -------------------------------------------------------------------------------- /Chapter13/Ch13_08/Ch13_08.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter13/Ch13_08/Ch13_08.vcxproj.user -------------------------------------------------------------------------------- /Chapter13/Ch13_08/Ch13_08_.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter13/Ch13_08/Ch13_08_.asm -------------------------------------------------------------------------------- /Chapter13/Ch13_08/Ch13_08_BM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter13/Ch13_08/Ch13_08_BM.cpp -------------------------------------------------------------------------------- /Chapter13/Ch13_08/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter13/Ch13_08/stdafx.cpp -------------------------------------------------------------------------------- /Chapter13/Ch13_08/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter13/Ch13_08/stdafx.h -------------------------------------------------------------------------------- /Chapter13/Ch13_08/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter13/Ch13_08/targetver.h -------------------------------------------------------------------------------- /Chapter13/Ch13_09/Ch13_09.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter13/Ch13_09/Ch13_09.cpp -------------------------------------------------------------------------------- /Chapter13/Ch13_09/Ch13_09.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter13/Ch13_09/Ch13_09.h -------------------------------------------------------------------------------- /Chapter13/Ch13_09/Ch13_09.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter13/Ch13_09/Ch13_09.vcxproj -------------------------------------------------------------------------------- /Chapter13/Ch13_09/Ch13_09.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter13/Ch13_09/Ch13_09.vcxproj.user -------------------------------------------------------------------------------- /Chapter13/Ch13_09/Ch13_09_.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter13/Ch13_09/Ch13_09_.asm -------------------------------------------------------------------------------- /Chapter13/Ch13_09/Ch13_09_BM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter13/Ch13_09/Ch13_09_BM.cpp -------------------------------------------------------------------------------- /Chapter13/Ch13_09/Ch13_09_Misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter13/Ch13_09/Ch13_09_Misc.cpp -------------------------------------------------------------------------------- /Chapter13/Ch13_09/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter13/Ch13_09/stdafx.cpp -------------------------------------------------------------------------------- /Chapter13/Ch13_09/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter13/Ch13_09/stdafx.h -------------------------------------------------------------------------------- /Chapter13/Ch13_09/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter13/Ch13_09/targetver.h -------------------------------------------------------------------------------- /Chapter13/Ch13_Include/AlignedMem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter13/Ch13_Include/AlignedMem.h -------------------------------------------------------------------------------- /Chapter13/Ch13_Include/BmThreadTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter13/Ch13_Include/BmThreadTimer.h -------------------------------------------------------------------------------- /Chapter13/Ch13_Include/ImageMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter13/Ch13_Include/ImageMatrix.h -------------------------------------------------------------------------------- /Chapter13/Ch13_Include/Matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter13/Ch13_Include/Matrix.h -------------------------------------------------------------------------------- /Chapter13/Ch13_Include/OS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter13/Ch13_Include/OS.h -------------------------------------------------------------------------------- /Chapter13/Ch13_Include/Vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter13/Ch13_Include/Vector.h -------------------------------------------------------------------------------- /Chapter13/Ch13_Include/XmmVal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter13/Ch13_Include/XmmVal.h -------------------------------------------------------------------------------- /Chapter13/Ch13_Include/YmmVal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter13/Ch13_Include/YmmVal.h -------------------------------------------------------------------------------- /Chapter13/Ch13_Include/ZmmVal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter13/Ch13_Include/ZmmVal.h -------------------------------------------------------------------------------- /Chapter13/Ch13_Include/cmpequ.asmh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter13/Ch13_Include/cmpequ.asmh -------------------------------------------------------------------------------- /Chapter13/Chapter13.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter13/Chapter13.sln -------------------------------------------------------------------------------- /Chapter14/Ch14_01/Ch14_01.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter14/Ch14_01/Ch14_01.cpp -------------------------------------------------------------------------------- /Chapter14/Ch14_01/Ch14_01.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter14/Ch14_01/Ch14_01.vcxproj -------------------------------------------------------------------------------- /Chapter14/Ch14_01/Ch14_01.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter14/Ch14_01/Ch14_01.vcxproj.user -------------------------------------------------------------------------------- /Chapter14/Ch14_01/Ch14_01_.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter14/Ch14_01/Ch14_01_.asm -------------------------------------------------------------------------------- /Chapter14/Ch14_01/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter14/Ch14_01/stdafx.cpp -------------------------------------------------------------------------------- /Chapter14/Ch14_01/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter14/Ch14_01/stdafx.h -------------------------------------------------------------------------------- /Chapter14/Ch14_01/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter14/Ch14_01/targetver.h -------------------------------------------------------------------------------- /Chapter14/Ch14_02/Ch14_02.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter14/Ch14_02/Ch14_02.cpp -------------------------------------------------------------------------------- /Chapter14/Ch14_02/Ch14_02.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter14/Ch14_02/Ch14_02.vcxproj -------------------------------------------------------------------------------- /Chapter14/Ch14_02/Ch14_02.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter14/Ch14_02/Ch14_02.vcxproj.user -------------------------------------------------------------------------------- /Chapter14/Ch14_02/Ch14_02_.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter14/Ch14_02/Ch14_02_.asm -------------------------------------------------------------------------------- /Chapter14/Ch14_02/Ch14_02_Misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter14/Ch14_02/Ch14_02_Misc.cpp -------------------------------------------------------------------------------- /Chapter14/Ch14_02/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter14/Ch14_02/stdafx.cpp -------------------------------------------------------------------------------- /Chapter14/Ch14_02/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter14/Ch14_02/stdafx.h -------------------------------------------------------------------------------- /Chapter14/Ch14_02/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter14/Ch14_02/targetver.h -------------------------------------------------------------------------------- /Chapter14/Ch14_03/Ch14_03.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter14/Ch14_03/Ch14_03.cpp -------------------------------------------------------------------------------- /Chapter14/Ch14_03/Ch14_03.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter14/Ch14_03/Ch14_03.h -------------------------------------------------------------------------------- /Chapter14/Ch14_03/Ch14_03.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter14/Ch14_03/Ch14_03.vcxproj -------------------------------------------------------------------------------- /Chapter14/Ch14_03/Ch14_03.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter14/Ch14_03/Ch14_03.vcxproj.user -------------------------------------------------------------------------------- /Chapter14/Ch14_03/Ch14_03_.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter14/Ch14_03/Ch14_03_.asm -------------------------------------------------------------------------------- /Chapter14/Ch14_03/Ch14_03_Misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter14/Ch14_03/Ch14_03_Misc.cpp -------------------------------------------------------------------------------- /Chapter14/Ch14_03/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter14/Ch14_03/stdafx.cpp -------------------------------------------------------------------------------- /Chapter14/Ch14_03/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter14/Ch14_03/stdafx.h -------------------------------------------------------------------------------- /Chapter14/Ch14_03/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter14/Ch14_03/targetver.h -------------------------------------------------------------------------------- /Chapter14/Ch14_04/Ch14_04.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter14/Ch14_04/Ch14_04.cpp -------------------------------------------------------------------------------- /Chapter14/Ch14_04/Ch14_04.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter14/Ch14_04/Ch14_04.h -------------------------------------------------------------------------------- /Chapter14/Ch14_04/Ch14_04.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter14/Ch14_04/Ch14_04.vcxproj -------------------------------------------------------------------------------- /Chapter14/Ch14_04/Ch14_04.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter14/Ch14_04/Ch14_04.vcxproj.user -------------------------------------------------------------------------------- /Chapter14/Ch14_04/Ch14_04_.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter14/Ch14_04/Ch14_04_.asm -------------------------------------------------------------------------------- /Chapter14/Ch14_04/Ch14_04_BM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter14/Ch14_04/Ch14_04_BM.cpp -------------------------------------------------------------------------------- /Chapter14/Ch14_04/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter14/Ch14_04/stdafx.cpp -------------------------------------------------------------------------------- /Chapter14/Ch14_04/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter14/Ch14_04/stdafx.h -------------------------------------------------------------------------------- /Chapter14/Ch14_04/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter14/Ch14_04/targetver.h -------------------------------------------------------------------------------- /Chapter14/Ch14_05/Ch14_05.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter14/Ch14_05/Ch14_05.cpp -------------------------------------------------------------------------------- /Chapter14/Ch14_05/Ch14_05.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter14/Ch14_05/Ch14_05.h -------------------------------------------------------------------------------- /Chapter14/Ch14_05/Ch14_05.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter14/Ch14_05/Ch14_05.vcxproj -------------------------------------------------------------------------------- /Chapter14/Ch14_05/Ch14_05.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter14/Ch14_05/Ch14_05.vcxproj.user -------------------------------------------------------------------------------- /Chapter14/Ch14_05/Ch14_05_.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter14/Ch14_05/Ch14_05_.asm -------------------------------------------------------------------------------- /Chapter14/Ch14_05/Ch14_05_BM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter14/Ch14_05/Ch14_05_BM.cpp -------------------------------------------------------------------------------- /Chapter14/Ch14_05/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter14/Ch14_05/stdafx.cpp -------------------------------------------------------------------------------- /Chapter14/Ch14_05/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter14/Ch14_05/stdafx.h -------------------------------------------------------------------------------- /Chapter14/Ch14_05/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter14/Ch14_05/targetver.h -------------------------------------------------------------------------------- /Chapter14/Ch14_Data/TestImage3.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter14/Ch14_Data/TestImage3.bmp -------------------------------------------------------------------------------- /Chapter14/Ch14_Data/TestImage4.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter14/Ch14_Data/TestImage4.bmp -------------------------------------------------------------------------------- /Chapter14/Ch14_Include/AlignedMem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter14/Ch14_Include/AlignedMem.h -------------------------------------------------------------------------------- /Chapter14/Ch14_Include/BmThreadTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter14/Ch14_Include/BmThreadTimer.h -------------------------------------------------------------------------------- /Chapter14/Ch14_Include/ImageMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter14/Ch14_Include/ImageMatrix.h -------------------------------------------------------------------------------- /Chapter14/Ch14_Include/Matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter14/Ch14_Include/Matrix.h -------------------------------------------------------------------------------- /Chapter14/Ch14_Include/OS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter14/Ch14_Include/OS.h -------------------------------------------------------------------------------- /Chapter14/Ch14_Include/Vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter14/Ch14_Include/Vector.h -------------------------------------------------------------------------------- /Chapter14/Ch14_Include/XmmVal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter14/Ch14_Include/XmmVal.h -------------------------------------------------------------------------------- /Chapter14/Ch14_Include/YmmVal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter14/Ch14_Include/YmmVal.h -------------------------------------------------------------------------------- /Chapter14/Ch14_Include/ZmmVal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter14/Ch14_Include/ZmmVal.h -------------------------------------------------------------------------------- /Chapter14/Ch14_Include/cmpequ.asmh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter14/Ch14_Include/cmpequ.asmh -------------------------------------------------------------------------------- /Chapter14/Chapter14.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter14/Chapter14.sln -------------------------------------------------------------------------------- /Chapter15/Ch15_01/Ch15_01.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter15/Ch15_01/Ch15_01.cpp -------------------------------------------------------------------------------- /Chapter15/Ch15_01/Ch15_01.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter15/Ch15_01/Ch15_01.vcxproj -------------------------------------------------------------------------------- /Chapter15/Ch15_01/Ch15_01.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter15/Ch15_01/Ch15_01.vcxproj.user -------------------------------------------------------------------------------- /Chapter15/Ch15_01/Ch15_01_.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter15/Ch15_01/Ch15_01_.asm -------------------------------------------------------------------------------- /Chapter15/Ch15_01/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter15/Ch15_01/stdafx.cpp -------------------------------------------------------------------------------- /Chapter15/Ch15_01/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter15/Ch15_01/stdafx.h -------------------------------------------------------------------------------- /Chapter15/Ch15_01/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter15/Ch15_01/targetver.h -------------------------------------------------------------------------------- /Chapter15/Ch15_Include/AlignedMem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter15/Ch15_Include/AlignedMem.h -------------------------------------------------------------------------------- /Chapter15/Ch15_Include/BmThreadTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter15/Ch15_Include/BmThreadTimer.h -------------------------------------------------------------------------------- /Chapter15/Ch15_Include/ImageMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter15/Ch15_Include/ImageMatrix.h -------------------------------------------------------------------------------- /Chapter15/Ch15_Include/Matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter15/Ch15_Include/Matrix.h -------------------------------------------------------------------------------- /Chapter15/Ch15_Include/OS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter15/Ch15_Include/OS.h -------------------------------------------------------------------------------- /Chapter15/Ch15_Include/Vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter15/Ch15_Include/Vector.h -------------------------------------------------------------------------------- /Chapter15/Ch15_Include/XmmVal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter15/Ch15_Include/XmmVal.h -------------------------------------------------------------------------------- /Chapter15/Ch15_Include/YmmVal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter15/Ch15_Include/YmmVal.h -------------------------------------------------------------------------------- /Chapter15/Ch15_Include/ZmmVal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter15/Ch15_Include/ZmmVal.h -------------------------------------------------------------------------------- /Chapter15/Ch15_Include/cmpequ.asmh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter15/Ch15_Include/cmpequ.asmh -------------------------------------------------------------------------------- /Chapter15/Chapter15.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter15/Chapter15.sln -------------------------------------------------------------------------------- /Chapter16/Ch16_01/CacheInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter16/Ch16_01/CacheInfo.cpp -------------------------------------------------------------------------------- /Chapter16/Ch16_01/Ch16_01.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter16/Ch16_01/Ch16_01.cpp -------------------------------------------------------------------------------- /Chapter16/Ch16_01/Ch16_01.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter16/Ch16_01/Ch16_01.vcxproj -------------------------------------------------------------------------------- /Chapter16/Ch16_01/Ch16_01.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter16/Ch16_01/Ch16_01.vcxproj.user -------------------------------------------------------------------------------- /Chapter16/Ch16_01/CpuidInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter16/Ch16_01/CpuidInfo.cpp -------------------------------------------------------------------------------- /Chapter16/Ch16_01/CpuidInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter16/Ch16_01/CpuidInfo.h -------------------------------------------------------------------------------- /Chapter16/Ch16_01/CpuidInfo_.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter16/Ch16_01/CpuidInfo_.asm -------------------------------------------------------------------------------- /Chapter16/Ch16_01/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter16/Ch16_01/stdafx.cpp -------------------------------------------------------------------------------- /Chapter16/Ch16_01/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter16/Ch16_01/stdafx.h -------------------------------------------------------------------------------- /Chapter16/Ch16_01/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter16/Ch16_01/targetver.h -------------------------------------------------------------------------------- /Chapter16/Ch16_02/Ch16_02.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter16/Ch16_02/Ch16_02.cpp -------------------------------------------------------------------------------- /Chapter16/Ch16_02/Ch16_02.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter16/Ch16_02/Ch16_02.h -------------------------------------------------------------------------------- /Chapter16/Ch16_02/Ch16_02.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter16/Ch16_02/Ch16_02.vcxproj -------------------------------------------------------------------------------- /Chapter16/Ch16_02/Ch16_02.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter16/Ch16_02/Ch16_02.vcxproj.user -------------------------------------------------------------------------------- /Chapter16/Ch16_02/Ch16_02_.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter16/Ch16_02/Ch16_02_.asm -------------------------------------------------------------------------------- /Chapter16/Ch16_02/Ch16_02_BM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter16/Ch16_02/Ch16_02_BM.cpp -------------------------------------------------------------------------------- /Chapter16/Ch16_02/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter16/Ch16_02/stdafx.cpp -------------------------------------------------------------------------------- /Chapter16/Ch16_02/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter16/Ch16_02/stdafx.h -------------------------------------------------------------------------------- /Chapter16/Ch16_02/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter16/Ch16_02/targetver.h -------------------------------------------------------------------------------- /Chapter16/Ch16_03/Ch16_03.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter16/Ch16_03/Ch16_03.cpp -------------------------------------------------------------------------------- /Chapter16/Ch16_03/Ch16_03.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter16/Ch16_03/Ch16_03.h -------------------------------------------------------------------------------- /Chapter16/Ch16_03/Ch16_03.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter16/Ch16_03/Ch16_03.vcxproj -------------------------------------------------------------------------------- /Chapter16/Ch16_03/Ch16_03.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter16/Ch16_03/Ch16_03.vcxproj.user -------------------------------------------------------------------------------- /Chapter16/Ch16_03/Ch16_03_.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter16/Ch16_03/Ch16_03_.asm -------------------------------------------------------------------------------- /Chapter16/Ch16_03/Ch16_03_.asmh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter16/Ch16_03/Ch16_03_.asmh -------------------------------------------------------------------------------- /Chapter16/Ch16_03/Ch16_03_BM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter16/Ch16_03/Ch16_03_BM.cpp -------------------------------------------------------------------------------- /Chapter16/Ch16_03/Ch16_03_Misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter16/Ch16_03/Ch16_03_Misc.cpp -------------------------------------------------------------------------------- /Chapter16/Ch16_03/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter16/Ch16_03/stdafx.cpp -------------------------------------------------------------------------------- /Chapter16/Ch16_03/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter16/Ch16_03/stdafx.h -------------------------------------------------------------------------------- /Chapter16/Ch16_03/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter16/Ch16_03/targetver.h -------------------------------------------------------------------------------- /Chapter16/Ch16_04/Ch16_04.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter16/Ch16_04/Ch16_04.cpp -------------------------------------------------------------------------------- /Chapter16/Ch16_04/Ch16_04.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter16/Ch16_04/Ch16_04.h -------------------------------------------------------------------------------- /Chapter16/Ch16_04/Ch16_04.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter16/Ch16_04/Ch16_04.vcxproj -------------------------------------------------------------------------------- /Chapter16/Ch16_04/Ch16_04.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter16/Ch16_04/Ch16_04.vcxproj.user -------------------------------------------------------------------------------- /Chapter16/Ch16_04/Ch16_04_.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter16/Ch16_04/Ch16_04_.asm -------------------------------------------------------------------------------- /Chapter16/Ch16_04/Ch16_04_Misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter16/Ch16_04/Ch16_04_Misc.cpp -------------------------------------------------------------------------------- /Chapter16/Ch16_04/Ch16_04_WinApi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter16/Ch16_04/Ch16_04_WinApi.cpp -------------------------------------------------------------------------------- /Chapter16/Ch16_04/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter16/Ch16_04/stdafx.cpp -------------------------------------------------------------------------------- /Chapter16/Ch16_04/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter16/Ch16_04/stdafx.h -------------------------------------------------------------------------------- /Chapter16/Ch16_04/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter16/Ch16_04/targetver.h -------------------------------------------------------------------------------- /Chapter16/Ch16_Include/AlignedMem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter16/Ch16_Include/AlignedMem.h -------------------------------------------------------------------------------- /Chapter16/Ch16_Include/BmThreadTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter16/Ch16_Include/BmThreadTimer.h -------------------------------------------------------------------------------- /Chapter16/Ch16_Include/ImageMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter16/Ch16_Include/ImageMatrix.h -------------------------------------------------------------------------------- /Chapter16/Ch16_Include/Matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter16/Ch16_Include/Matrix.h -------------------------------------------------------------------------------- /Chapter16/Ch16_Include/OS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter16/Ch16_Include/OS.h -------------------------------------------------------------------------------- /Chapter16/Ch16_Include/Vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter16/Ch16_Include/Vector.h -------------------------------------------------------------------------------- /Chapter16/Ch16_Include/XmmVal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter16/Ch16_Include/XmmVal.h -------------------------------------------------------------------------------- /Chapter16/Ch16_Include/YmmVal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter16/Ch16_Include/YmmVal.h -------------------------------------------------------------------------------- /Chapter16/Ch16_Include/ZmmVal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter16/Ch16_Include/ZmmVal.h -------------------------------------------------------------------------------- /Chapter16/Ch16_Include/cmpequ.asmh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter16/Ch16_Include/cmpequ.asmh -------------------------------------------------------------------------------- /Chapter16/Chapter16.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Chapter16/Chapter16.sln -------------------------------------------------------------------------------- /Contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/Contributing.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/README.md -------------------------------------------------------------------------------- /errata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-x86-assembly-language-programming-2e/HEAD/errata.md --------------------------------------------------------------------------------