home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #18 / NN_1992_18.iso / spool / comp / sys / amiga / programm / 12302 < prev    next >
Encoding:
Internet Message Format  |  1992-08-13  |  647 b 

  1. Path: sparky!uunet!portal!cup.portal.com!Aurelius
  2. From: Aurelius@cup.portal.com (Mark Christian Barnes)
  3. Newsgroups: comp.sys.amiga.programmer
  4. Subject: Re: problem with movea.l
  5. Message-ID: <64002@cup.portal.com>
  6. Date: Thu, 13 Aug 92 22:09:56 PDT
  7. Organization: The Portal System (TM)
  8. Distribution: world
  9. References:  <1992Aug13.123046.12142@lri.fr>
  10. Lines: 14
  11.  
  12. Hi Jean,
  13.  
  14.  Any 68000 compiler that lets you write a statement:
  15.  
  16.    move.l x,a0
  17.  
  18. is really going to generate the machine code for:
  19.  
  20.    movea.l x,a0
  21.  
  22. because this is the actual instruction required. These
  23. assemblers are just being *kind* to you. ;-)
  24.  
  25.                 Aurelius@cup.portal.com
  26.