What is a good example of a routine to invert the entire screen in asm?
I tried something like

Code:
ld hl,plotsscreen
xor (hl)
ld de,plotsscreen
ld bc,768
ldir
call ionfastcopy

but it didn't do anything Wink

Code:
  ld bc, 12*64
  ld hl, plotSScreen
loop:
  ld a, (hl)
  cpl
  ld (hl), a
  inc hl
  dec bc
  ld a, b
  or a, c
  jr nz, loop

Smile
Thanks! Smile

By the way, PT_, I because I am not always connected to the internet while I am programming, I can't always use your hex separating program. So I made a BASIC program that separates a string of hex to make it usable for an asm program.

If you want to test it, here is the link:
https://drive.google.com/open?id=0B7tYBhSdXxlGVVBCTENubHlkczA
  
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