Email: Password: Remember Me | Create Account (Free)

Back to Subject List

Old thread has been locked -- no new posts accepted in this thread
???
07/26/05 10:30
Read: times


 
#98129 - Software Control!
Responding to: ???'s previous message
ddram_address equ 50h
length        equ 51h
mov ddram_address,#80h ;first line of lcd
call shifting
...
...
...



shifting:
mov length,#0
mov dptr,#mess
loop:
mov a,ddram_address
call address
mov a,length
movc a@a+dptr
call write_on
inc length
mov a,length
cjne a,#20,loop
ret

mess: db "<welcome to system!>"

write_on and address is subroutines from 
http://www.8052.com/codelib/lcd_kepad.asm




List of 8 messages in thread
TopicAuthorDate
20*4 lcd            01/01/70 00:00      
   Buffer, shift, then write            01/01/70 00:00      
      Alternative approach            01/01/70 00:00      
         lcd            01/01/70 00:00      
   It is easy!            01/01/70 00:00      
      Software Control!            01/01/70 00:00      
         Software is the answer            01/01/70 00:00      
         awesome            01/01/70 00:00      

Back to Subject List