OLD | NEW |
1 // Inferno's libkern/vlop-386.s | 1 // Inferno's libkern/vlop-386.s |
2 // http://code.google.com/p/inferno-os/source/browse/libkern/vlop-386.s | 2 // http://code.google.com/p/inferno-os/source/browse/libkern/vlop-386.s |
3 // | 3 // |
4 // Copyright © 1994-1999 Lucent Technologies Inc. All rights reserved. | 4 // Copyright © 1994-1999 Lucent Technologies Inc. All rights reserved. |
5 // Revisions Copyright © 2000-2007 Vita Nuova Holdings Limited (www.vita
nuova.com). All rights reserved. | 5 // Revisions Copyright © 2000-2007 Vita Nuova Holdings Limited (www.vita
nuova.com). All rights reserved. |
6 // Portions Copyright 2009 The Go Authors. All rights reserved. | 6 // Portions Copyright 2009 The Go Authors. All rights reserved. |
7 // | 7 // |
8 // Permission is hereby granted, free of charge, to any person obtaining a copy | 8 // Permission is hereby granted, free of charge, to any person obtaining a copy |
9 // of this software and associated documentation files (the "Software"), to deal | 9 // of this software and associated documentation files (the "Software"), to deal |
10 // in the Software without restriction, including without limitation the rights | 10 // in the Software without restriction, including without limitation the rights |
(...skipping 28 matching lines...) Expand all Loading... |
39 MOVL BX, 4(CX) | 39 MOVL BX, 4(CX) |
40 RET | 40 RET |
41 | 41 |
42 TEXT _div64by32(SB), 7, $0 | 42 TEXT _div64by32(SB), 7, $0 |
43 MOVL r+12(FP), CX | 43 MOVL r+12(FP), CX |
44 MOVL a+0(FP), AX | 44 MOVL a+0(FP), AX |
45 MOVL a+4(FP), DX | 45 MOVL a+4(FP), DX |
46 DIVL b+8(FP) | 46 DIVL b+8(FP) |
47 MOVL DX, 0(CX) | 47 MOVL DX, 0(CX) |
48 RET | 48 RET |
OLD | NEW |