home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #18 / NN_1992_18.iso / spool / comp / sys / amiga / programm / 12471 < prev    next >
Encoding:
Text File  |  1992-08-19  |  1.8 KB  |  50 lines

  1. Newsgroups: comp.sys.amiga.programmer
  2. Path: sparky!uunet!mcsun!sunic!ugle.unit.no!solan1.solan.unit.no!gimme
  3. From: gimme@solan.unit.no (Olav Gimmestad)
  4. Subject: Re: Assembler programming.
  5. Message-ID: <1992Aug19.193244.26185@ugle.unit.no>
  6. Sender: news@ugle.unit.no (NetNews Administrator)
  7. Organization: Norwegian Institute of Technology
  8. References:  <1676@grivel.une.edu.au>
  9. Date: Wed, 19 Aug 92 19:32:44 GMT
  10. Lines: 38
  11.  
  12. In article <1676@grivel.une.edu.au>, cfiddyme@neumann.une.edu.au (Chris Fiddyment) writes:
  13.  > 
  14.  >   Has anyone had a look at the disks brought out by the Amiga Coders Club.
  15.  >   They are from England. I am a beggining assembler programmer and need some
  16.  >   help compiling them with A68k.
  17.  >    e.g.  This line gives the error:
  18.  >            MOVE.L (a0,d0),d0
  19.  >                    ^ Undefined symbol.
  20.  
  21.  I think it should be move.l (a0.d0),d0
  22.  
  23.  >   I am not sure what the original assembler for it was but I can find out if
  24.  >   it is important.
  25.  >   Also most of the graphics programs (scrollers, etc just give me a blue screen
  26.  >   and nothing else)
  27.  This is probably because the copperlist or other graphics data are 
  28.  located in fast ram (if you have more ram than 512k).
  29.  To fix that you could try to type
  30.  
  31.  run nofastmem
  32.  
  33.  before you start yopur program. This is not the final solution
  34.  you should edit your program an make sure that copperlists and
  35.  graphics data are stored in chip memory. This can be fixed by
  36.  use of the ATOM utility or in assemblers like devpack with
  37.  the SECTION command, or just allocating chip-memory from the system
  38.  and move you data to the buffer.
  39.  
  40.  
  41.  
  42.  >   Any help getting these programs working would be appreciated.
  43.  >           Thanks,   Chris.
  44.  > * Chris Fiddyment.             |   I never promised anybody *
  45.  > * cfiddyme@neumann.une.edu.au  |   anything.   Kermit.      *
  46.  
  47.  Hope this will help.
  48.  Olav Gimmestad
  49.  
  50.