please dont rip this site

SX Microcontroller Radix Math Method

ASCII decimal to Binary

Scott Dattalo and Dmitry Kiryashov

;ascii1 and ascii2 are the tens and ones digit of a number we wish
;to convert to binary
;
; In C:
;
;  binary = (ascii1 & 0xf) * 10 + (ascii2 & 0xf);
;
; (I'd be interested to see how a compiler would generate the asm for this.)
;

        ;Clear the upper nibble of the one's digit
        mov     W, #$0f
        and     ascii2, W

        ;Multiply the tens digit by 10.
        mov     W, <<ascii1     ;2*tens
                                ;Note that the carry is also cleared because
                                ;ascii1 is an ASCII number between 0x30-0x39
        and     W, #$1e         ;Clear upper nibble of tens digit
                                ;In addition, we clear the shifted in carry
        mov     ascii1, W       ;W = ascii1 = 2*original ascii1
        rl      ascii1          ;ascii1 = 4*original ascii1
        rl      ascii1          ;ascii1 = 8*original ascii1
        add     W, ascii1       ;W = 2*original ascii1 + 8 *original ascii1
                                ;  = 10*original ascii1
        ;add the one's digit
        add     W, ascii2       ;

; Or use this one that preserves input:

        mov     W, <<tens
        and     W, #$1e         ;w=2*tens
        mov     temp, W
        rl      temp            ;temp=4*tens
        rl      temp            ;temp=8*tens
        add     temp, W         ;temp=8*tens+2*tens=10*tens
        mov     W, #-'0'        ;convert one's digit from ASCII to decimal
        add     W, ones         ;w=ones
        add     W, temp         ;w=ones+10*tens

;Dmitry Kiryashov [zews at AHA.RU] says:
;Destructive way to save one more clock ;-)

        mov     W, tens         ;*1     w=0x30..0x39
        add     tens, W         ;*2     tens=0x60..0x72
        rl      tens            ;*4     tens=0xC0..0xE4
        add     tens, W         ;*5     tens=0xF0..0x1ED

        mov     W, #(-11*'0') & $FF     ;low byte of -48*11
        add     W, ones
        add     W, tens         ;add two times tens=5*original_tens
        add     W, tens

;Why so ? tens is '0' + x , ones is '0' + y , where x and y are in range
;of 0..9 So finally '0'*(10+1)=48.*11.=528.=0x210 . it is constant so we
;can subtract it back from result. Here we gone ;)


file: /Techref/scenix/lib/math/radix/a2b-2d8b-sd_sx.htm, 2KB, , updated: 2004/6/10 14:40, local time: 2024/3/29 08:51,
TOP NEW HELP FIND: 
107.20.123.227:LOG IN

 ©2024 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! / MAKE!

<A HREF="http://www.piclist.com/techref/scenix/lib/math/radix/a2b-2d8b-sd_sx.htm"> SX Microcontroller Radix Math Method ASCII decimal to Binary</A>

After you find an appropriate page, you are invited to your to this massmind site! (posts will be visible only to you before review) Just type a nice message (short messages are blocked as spam) in the box and press the Post button. (HTML welcomed, but not the <A tag: Instead, use the link box to link to another page. 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: 
Attn spammers: All posts are reviewed before being made visible to anyone other than the poster.
Did you find what you needed?

  PICList 2024 contributors:
o List host: MIT, Site host massmind.org, Top posters @none found
- 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: Gregg Rew. on-going support is MOST appreciated!
* Contributors: Richard Seriani, Sr.
 

Welcome to www.piclist.com!

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

  .