Changeset 445 in xtideuniversalbios for trunk/Assembly_Library/Src/Util/Sort.asm
- Timestamp:
- Aug 29, 2012, 12:59:23 PM (13 years ago)
- google:author:
- krille_n_@hotmail.com
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Assembly_Library/Src/Util/Sort.asm
r376 r445 7 7 8 8 ; 9 ; XTIDE Universal BIOS and Associated Tools 9 ; XTIDE Universal BIOS and Associated Tools 10 10 ; Copyright (C) 2009-2010 by Tomi Tilli, 2011-2012 by XTIDE Universal BIOS Team. 11 11 ; … … 14 14 ; the Free Software Foundation; either version 2 of the License, or 15 15 ; (at your option) any later version. 16 ; 16 ; 17 17 ; This program is distributed in the hope that it will be useful, 18 18 ; but WITHOUT ANY WARRANTY; without even the implied warranty of 19 19 ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 20 ; GNU General Public License for more details. 20 ; GNU General Public License for more details. 21 21 ; Visit http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 22 ; 22 ; 23 23 24 24 ; Algorith is from http://www.algolist.net/Algorithms/Sorting/Quicksort … … 62 62 push di 63 63 mov di, cx 64 shlcx, 1 ; Reserve temp and pivot items64 eSHL_IM cx, 1 ; Reserve temp and pivot items 65 65 add cx, BYTE QSORT_PARAMS_size 66 66 eENTER_STRUCT cx
Note:
See TracChangeset
for help on using the changeset viewer.