home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #16 / NN_1992_16.iso / spool / comp / sys / amiga / programm / 11593 < prev    next >
Encoding:
Internet Message Format  |  1992-07-24  |  1023 b 

  1. Path: sparky!uunet!elroy.jpl.nasa.gov!swrinde!zaphod.mps.ohio-state.edu!pacific.mps.ohio-state.edu!linac!att!ucbvax!WINVMJ.VNET.IBM.COM!9LORKIN
  2. From: 9LORKIN@WINVMJ.VNET.IBM.COM ("Julian Lorkin")
  3. Newsgroups: comp.sys.amiga.programmer
  4. Subject: Disk drive timing.... (without AmigaDOS)
  5. Message-ID: <9207240938.AA08170@ucbvax.Berkeley.EDU>
  6. Date: 24 Jul 92 09:37:29 GMT
  7. Sender: daemon@ucbvax.BERKELEY.EDU
  8. Lines: 20
  9.  
  10. How can you idle your Amiga for a fixed amount of time?
  11.  
  12. Busy waiting the CPU in a closed loop is out of the question because a
  13. 68030 will execute this loop faster than a 68000.  Is counting raster
  14. lines reliable? Like this .  .  .
  15.  
  16. nextrast  move.b   dff006,d1
  17. waitrast  cmp.b    dff006,d1
  18.           beq.s    waitrast
  19.           dbf      d0,nextrast
  20.  
  21. Would this work on all screen modes? and on all types of Amiga?
  22.  
  23. Another method might be to use the CIAs but the driving input is
  24. different on PAL and NTSC machines.  How big is this difference? Is it
  25. big enough to cause problems?
  26.  
  27. Thanks in advance...
  28.  
  29. Dave.
  30.