please dont rip this site

Methods : Sort

Sorting a list of numbers.

See also:

A simple bubble sort for 8 bit values:


; 4 element bubble sort routine
; by Andrew Warren <aiw at cypress.com> on 2001-04-13
; 2001-06-19:DAV: reworded comments.
  ; Macro ``Order'' puts the values in registers X and Y
  ; in order (X <= Y) by swapping their values (if necessary).
ORDER   MACRO   X,Y
        local endif
        ;if( Y < X)...
        MOVFW    X
        SUBWF   Y,W ; compare and set W := (Y-X). (modulo 0xff).
        BC endif
        ;...then swap them.
        ADDWF   X,f               ; Xnew := X + (Y-X) = Y;
        SUBWF   Y,f               ; Ynew := Y - (Y-X) = X;
endif:
        ; now X <= Y.
        ENDM

; SUBROUTINE SORTSUB() SORTS REG1-REG4 IN ASCENDING ORDER.
        SORTSUB:
                CALL    SORT3
                CALL    SORT2
        SORT1:  ORDER   REG1,REG2
        SORT2:  ORDER   REG2,REG3
        SORT3:  ORDER   REG3,REG4
                RETURN
; SORTSUB requires 21 words of code.
; by Andrew Warren


The "order" macro sorts 2 numbers (8 bit values).


file: /techref/method/sorts.htm, 1KB, , updated: 2003/11/30 20:31, local time: 2008/10/11 19:40, owner: DAV-MP-E62a,
TOP NEW HELP FIND: 
38.103.63.61:LOG IN
©2008 PLEASE DON'T RIP! DO: LINK / DIGG! / MAKE!

 ©2008 These pages are served without commercial sponsorship. (No popup ads, etc...).Bandwidth abuse increases hosting cost forcing sponsorship or shutdown. This server aggressively defends against automated copying for any reason including offline viewing, duplication, etc... Please respect this requirement and DO NOT RIP THIS SITE. Questions?
Please DO link to this page! Digg it!
<A HREF="http://piclist.com/techref/method/sorts.htm"> Sorting</A>

After you find an appropriate page, you are invited to your to this massmind site! (posts will be reviewed) Just type in the box and press the Post button. (HTML welcomed!): A tutorial is available Members can login to post directly, become page editors, and be credited for their posts.


Link? Put it here: 
if you want a response, please enter your email address: 
Did you find what you needed?

  PICList 2008 contributors:
o List host: MIT, Site host massmind.org, Top posters @20081011 Apptech, Jinx, Xiaofan Chen, olin piclist, Vitaliy, Alan B. Pearce, William \Chops\ Westfield, JonnyMac, Tamas Rudnai, Gerhard Fiedler,
* Page Editors: James Newton, David Cary, and YOU!
* Roman Black of Black Robotics donates from sales of Linistep stepper controller kits.
* Ashley Roll of Digital Nemesis donates from sales of RCL-1 RS232 to TTL converters.
* Monthly Subscribers: Shultz Electronics, Timothy Weber, on-going support is MOST appreciated!
* Contributors: Richard Seriani, Sr.
  'What can I do?' - SiCKO

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

  .