home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #31 / NN_1992_31.iso / spool / gnu / gcc / help / 2840 < prev    next >
Encoding:
Text File  |  1992-12-30  |  1.3 KB  |  26 lines

  1. Newsgroups: gnu.gcc.help
  2. Path: sparky!uunet!nntp1.radiomail.net!fernwood!synergy!clark
  3. From: clark@synergy.encinitas.ca.us (John Clark)
  4. Subject: Re: Help: Simple gas 68k Question 
  5. Message-ID: <1992Dec31.011801.15551@synergy.encinitas.ca.us>
  6. Organization: Synergy Microsystems, Inc. CA. USA
  7. References: <1992Nov25.155539.4490@bmerh85.bnr.ca>
  8. Date: Thu, 31 Dec 1992 01:18:01 GMT
  9. Lines: 15
  10.  
  11. In article <1992Nov25.155539.4490@bmerh85.bnr.ca> psycho@brtpa25.NoSubdomain.NoDomain (Paul Jezioranski) writes:
  12. +>    I am attempting to assemble what I would call a "traditional" 68000
  13. +>assembly file using gas. It chokes immediately on the file. Such things as 
  14. +>comments (";"), moves ("move.b"), and other things do not work. In the 
  15. +>m68k.h file that comes with gas, "move.b" becomes "moveb".
  16.  
  17. Gas does not conform to the Motorola standard opcode syntax. It is derived
  18. 'mit as', which is as old as the hills. Usually, I have resorted to writing
  19. translator from XYZ.AS to gas, which unfortunately requires some hand massaging
  20. to fully translate(well if I wrote a translator to do the whole thing I could
  21. have just as well written the binary code generator and been done with the
  22. whole mess.)
  23.  
  24. The problem is excaberated if the 'source' is frequently updated and
  25. retranslation is required. Of course a 'Motorola' option to gas would fix a
  26.