forked from wangyif2/RE-for-beginners
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbooks.bib
executable file
·144 lines (125 loc) · 4.42 KB
/
books.bib
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
@book{Kernighan:1988:CPL:576122,
author = {Kernighan, Brian W.},
editor = {Ritchie, Dennis M.},
title = {The C Programming Language},
year = {1988},
isbn = {0131103709},
edition = {2nd},
publisher = {Prentice Hall Professional Technical Reference},
}
@book{Knuth:1998:ACP:521463,
author = {Knuth, Donald E.},
title = {The Art of Computer Programming Volumes 1-3 Boxed Set},
year = {1998},
isbn = {0201485419},
edition = {2nd},
publisher = {Addison-Wesley Longman Publishing Co., Inc.},
address = {Boston, MA, USA},
}
@book{Warren:2002:HD:515297,
author = {Warren, Henry S.},
title = {Hacker's Delight},
year = {2002},
isbn = {0201914654},
publisher = {Addison-Wesley Longman Publishing Co., Inc.},
address = {Boston, MA, USA},
}
@book{ARM:1994,
author = {Advanced RISC Machines Ltd},
title = {The ARM Cookbook},
year = {1994},
note = "\AlsoAvailableAs \url{http://yurichev.com/ref/ARM\%20Cookbook\%20(1994)}",
}
@book{C99TC3,
author = {ISO},
title = {ISO/IEC 9899:TC3 (C C99 standard)},
year = {2007},
note = "\AlsoAvailableAs \url{http://www.open-std.org/jtc1/sc22/WG14/www/docs/n1256.pdf}",
}
@book{CPP11,
author = {ISO},
title = {ISO/IEC 14882:2011 (C++ 11 standard)},
year = {2013},
note = "\AlsoAvailableAs \url{http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2013/n3690.pdf}",
}
@book{IOSABI,
author = {Apple},
title = {iOS ABI Function Call Guide},
year = {2010},
note = "\AlsoAvailableAs \url{http://developer.apple.com/library/ios/documentation/Xcode/Conceptual/iPhoneOSABIReference/iPhoneOSABIReference.pdf}",
}
@book{Raymond:2003:AUP:829549,
author = {Raymond, Eric S.},
title = {The Art of UNIX Programming},
year = {2003},
isbn = {0131429019},
publisher = {Pearson Education},
note = "\AlsoAvailableAs \url{http://catb.org/esr/writings/taoup/html/}",
}
@book{AgnerFog,
author = {Agner Fog},
title = {The microarchitecture of Intel, AMD and VIA CPUs / An optimization guide for assembly programmers and compiler makers},
year = {2013},
note = "\url{http://agner.org/optimize/microarchitecture.pdf}",
}
@book{AgnerFogCPP,
author = {Agner Fog},
title = {Optimizing software in C++: An optimization guide for Windows, Linux and Mac platforms},
year = {2013},
note = "\url{http://agner.org/optimize/optimizing_cpp.pdf}",
}
@book{AgnerFogCC,
author = {Agner Fog},
title = {Calling conventions},
year = {2014},
note = "\url{http://www.agner.org/optimize/calling_conventions.pdf}",
}
@book{PPC,
author = {IBM},
title = {PowerPC(tm) Microprocessor Family: The Programming Environments for 32-Bit Microprocessors},
year = {2000},
note = "\AlsoAvailableAs \url{http://yurichev.com/mirrors/PowerPC/6xx_pem.pdf}",
}
@book{PPCABI,
author = {Steve Zucker, SunSoft and Kari Karhi, IBM},
title = {SYSTEM V APPLICATION BINARY INTERFACE: PowerPC Processor Supplement},
year = {1995},
note = "\AlsoAvailableAs \url{http://yurichev.com/mirrors/PowerPC/elfspec_ppc.pdf}",
}
@book{Russinovich,
author = {Mark E. Russinovich and David A. Solomon with Alex Ionescu},
title = {Windows® Internals: Including Windows Server 2008 and Windows Vista, Fifth Edition},
year = {2009},
}
@book{Schneier,
author = {Bruce Schneier},
title = {Applied Cryptography: Protocols, Algorithms, and Source Code in C},
year = {1994},
}
@book{Intel,
author = {Intel},
title = {Intel® 64 and IA-32 Architectures Software Developer’s Manual Combined Volumes:1, 2A, 2B, 2C, 3A, 3B, and 3C},
year = {2013},
note = "\AlsoAvailableAs \url{http://www.intel.com/content/dam/www/public/us/en/documents/manuals/64-ia-32-architectures-software-developer-manual-325462.pdf}",
}
@book{AMD,
author = {AMD},
title = {AMD64 Architecture Programmer’s Manual},
year = {2013},
note = "\AlsoAvailableAs \url{http://developer.amd.com/resources/documentation-articles/developer-guides-manuals/}",
}
@book{Cormen:2009:IAT:1614191,
author = {Cormen, Thomas H. and Leiserson, Charles E. and Rivest, Ronald L. and Stein, Clifford},
title = {Introduction to Algorithms, Third Edition},
year = {2009},
isbn = {0262033844, 9780262033848},
edition = {3rd},
publisher = {The MIT Press},
}
@book{10PRINT,
author = {Nick Montfort et al},
title = {10 PRINT CHR\$(205.5+RND(1)); : GOTO 10},
year = {2012},
publisher = {The MIT Press},
note = "\AlsoAvailableAs \url{http://trope-tank.mit.edu/10_PRINT_121114.pdf}",
}