OLD | NEW |
1 // Inferno utils/6c/6.out.h | 1 // Inferno utils/6c/6.out.h |
2 // http://code.google.com/p/inferno-os/source/browse/utils/6c/6.out.h | 2 // http://code.google.com/p/inferno-os/source/browse/utils/6c/6.out.h |
3 // | 3 // |
4 // Copyright © 1994-1999 Lucent Technologies Inc. All rights reserved. | 4 // Copyright © 1994-1999 Lucent Technologies Inc. All rights reserved. |
5 // Portions Copyright © 1995-1997 C H Forsyth (forsyth@terzarima.net) | 5 // Portions Copyright © 1995-1997 C H Forsyth (forsyth@terzarima.net) |
6 // Portions Copyright © 1997-1999 Vita Nuova Limited | 6 // Portions Copyright © 1997-1999 Vita Nuova Limited |
7 // Portions Copyright © 2000-2007 Vita Nuova Holdings Limited (www.vitanuov
a.com) | 7 // Portions Copyright © 2000-2007 Vita Nuova Holdings Limited (www.vitanuov
a.com) |
8 // Portions Copyright © 2004,2006 Bruce Ellis | 8 // Portions Copyright © 2004,2006 Bruce Ellis |
9 // Portions Copyright © 2005-2007 C H Forsyth (forsyth@terzarima.net) | 9 // Portions Copyright © 2005-2007 C H Forsyth (forsyth@terzarima.net) |
10 // Revisions Copyright © 2000-2007 Lucent Technologies Inc. and others | 10 // Revisions Copyright © 2000-2007 Lucent Technologies Inc. and others |
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
84 ADAA, | 84 ADAA, |
85 ADAS, | 85 ADAS, |
86 ADATA, | 86 ADATA, |
87 ADECB, | 87 ADECB, |
88 ADECL, | 88 ADECL, |
89 ADECQ, | 89 ADECQ, |
90 ADECW, | 90 ADECW, |
91 ADIVB, | 91 ADIVB, |
92 ADIVL, | 92 ADIVL, |
93 ADIVW, | 93 ADIVW, |
| 94 ADUFFCOPY, |
| 95 ADUFFZERO, |
94 AENTER, | 96 AENTER, |
95 AGLOBL, | 97 AGLOBL, |
96 AGOK, | 98 AGOK, |
97 AHISTORY, | 99 AHISTORY, |
98 AHLT, | 100 AHLT, |
99 AIDIVB, | 101 AIDIVB, |
100 AIDIVL, | 102 AIDIVL, |
101 AIDIVW, | 103 AIDIVW, |
102 AIMULB, | 104 AIMULB, |
103 AIMULL, | 105 AIMULL, |
(...skipping 780 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
884 REGTMP = D_DI, | 886 REGTMP = D_DI, |
885 REGEXT = D_R15, /* compiler allocates external registers
R15 down */ | 887 REGEXT = D_R15, /* compiler allocates external registers
R15 down */ |
886 FREGMIN = D_X0+5, /* first register variable */ | 888 FREGMIN = D_X0+5, /* first register variable */ |
887 FREGEXT = D_X0+15 /* first external register */ | 889 FREGEXT = D_X0+15 /* first external register */ |
888 }; | 890 }; |
889 | 891 |
890 /* | 892 /* |
891 * this is the ranlib header | 893 * this is the ranlib header |
892 */ | 894 */ |
893 #define SYMDEF "__.GOSYMDEF" | 895 #define SYMDEF "__.GOSYMDEF" |
OLD | NEW |