Anyone can think of an efficient solution? I can't think of anything without involving branching and wacky memory operations.
How big can HL be?
It will be within the full 24-bit range always
If you meant hl logical shift right 7 (10F+3R+3W):
Code:
   rlc l
   dec sp
   push hl
   inc sp
   pop de
   ex.s de,hl
   adc hl,hl

If you meant hl arithmetic shift right 7 (9F+3R+3W):

Code:
   add hl,hl
   dec sp
   push hl
   inc sp
   pop de
   sbc hl,hl
   ld h,d
   ld l,e
It works, indeed. Thanks!
  
Register to Join the Conversation
Have your own thoughts to add to this or any other topic? Want to ask a question, offer a suggestion, share your own programs and projects, upload a file to the file archives, get help with calculator and computer programming, or simply chat with like-minded coders and tech and calculator enthusiasts via the site-wide AJAX SAX widget? Registration for a free Cemetech account only takes a minute.

» Go to Registration page
Page 1 of 1
» All times are UTC - 5 Hours
 
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum

 

Advertisement