please dont rip this site

PIC Microcontoller Radix Math Method


2 digit ASCII decimal to 8 bit Binary

Robert White shares this code:

ASCII 3 digit decimal to 8 bit binary.

CONV_ASCII_HEX
	MOVLW	0X30
	SUBWF	DIGIT2, F
	SUBWF	DIGIT3, F
DIGI1
	SUBWF	DIGIT1, F
	BTFSC	STATUS, Z
	GOTO	X0
	MOVF	DIGIT1, W
	SUBLW	0X02
	BTFSC	STATUS, Z
	GOTO	X200
	MOVF	DIGIT1, W
	SUBLW	0X01
	BTFSC	STATUS, Z
	GOTO	X100
	GOTO	X0
X0
	CLRF	OUT
	GOTO	DIGI2
X100
	MOVLW	0X64
	MOVWF	OUT
	GOTO	DIGI2
X200
	MOVLW	0XC8
	MOVWF	OUT
DIGI2
	MOVLW	0X09
	MOVWF	COUNTN
	MOVF	DIGIT2, W
LOOPN
	ADDWF	DIGIT2, F
	DECFSZ	COUNTN, F
	GOTO	LOOPN
	MOVF	DIGIT2, W
	ADDWF	OUT, F
DIGI3
	MOVF	DIGIT3, W
	ADDWF	OUT, F
	RETURN	 

the three starting digits are in <DIGIT1;DIGIT2;DIGIT3>, and the binary is in OUT. good for use in RS232 terminal applications, which is what I designed it for. Also good for keypad etc.

Comments:

Questions:

See also:


file: /Techref/microchip/math/radix/a2b-3d8b-rw.htm, 3KB, , updated: 2009/4/10 12:32, local time: 2012/2/9 23:10,
TOP NEW HELP FIND: 
38.107.179.230:LOG IN

 ©2012 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/microchip/math/radix/a2b-3d8b-rw.htm"> PIC Microcontoller Radix Math Method </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 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?

 
miSim DE is an excellent, portable and powerful IDE for developing PIC applications.
Editor, assembler, disassembler and simulator w/ virtual component "plugins" (LED,LCD,key,motor,TV,etc).
 
miSim DE is an excellent, portable and powerful IDE for developing PIC applications.
The only consistant, simple to use yet powerful development environment. It simulates real-world devices via virtual component "plugins" (LED,LCD,key,motor,TV,etc) in real time, has a syntax highlighting editor, macro assembler and disassembler. Regular updates and third-party plugins keep this software ahead of any other PIC IDE.

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

  .