home *** CD-ROM | disk | FTP | other *** search
/ No Fragments Archive 10: Diskmags / nf_archive_10.iso / MAGS / TPS_MAG / TPS_MAG.MSA / DOCS / FULLSCRO.TXT < prev    next >
Text File  |  2010-04-21  |  2KB  |  57 lines

  1.                        FULLSCREEN SCROLLER
  2.  
  3. This is an explanation of the routine DEMO520.S which is in the 
  4. ASSEMBLER folder.You can use that source to produce a nice 
  5. demoeffect (it is used in many demos).The effect is a large Atari 
  6. sign scrolling upwards (or was it downwards...I don't remember!).
  7. There is no music,only that Atari sign.The blocks of the sign is 
  8. made in the program so there is nothing the source has to put 
  9. into the file.
  10. The documentation of the file is good,but sorry...it's in 
  11. Swedish!So all of you who can't read Swedish,you will have to 
  12. make it without th explanations.I'll try to tell you something 
  13. about the routine.
  14. First of all,go to the label copy_blk by using find in the menu.
  15. When you are there,go to the line
  16.  
  17.           moveq     #11,d1
  18.  
  19. The number (#) 11 shows how many lines there are with blocks.
  20. You can change it to,for example,5,to get only the half of the 
  21. screen scrolling.But then you'll have to change a few more 
  22. things.They will come down here...
  23. Next step is...go to the label blk_loop.There you will find a 
  24. line where it stands:
  25.  
  26.           moveq     #19,d0
  27.  
  28. That #19 shows how many blocks there are per line.Write #9 
  29. instead of #19 and see what happens (I don't know...maybe it 
  30. won't work!).
  31. The next step is:go to the label blk_loop2.There is a line where 
  32. it stands:
  33.  
  34.           moveq     #15,d2
  35.  
  36. That #15 means how many lines the block is.Try to change that too 
  37. and see what happens.
  38. Now,if you don't own a 520 ST,what do you do then??Well,go to the 
  39. label called copy_screens.There is a line where it stands:
  40.  
  41.           lea  $30000,a1
  42.  
  43. Now change that $30000 (only if you got 1 MEG or more!) to 
  44. $80000.The go to the label currpicadd & currpicadd2 and change 
  45. the $30000's there to $80000 and woops,you've got a MEG version!
  46. Then go to the label pal and the label block and change the 
  47. colors to whatever you want.
  48. Then the last things:go to the label atari and there you can 
  49. change the atari sign to anything you want,maybe a TPS sign 
  50. instead!At last go to the label text and write a line with some 
  51. nice text.Now your'e finished!
  52.  
  53. Thanx to An Cool for writing the source...
  54.  
  55. Explanation of changing the source by Sorcerer of The Digital Dictators!
  56.  
  57.