Path: utzoo!utgpu!news-server.csri.toronto.edu!cs.utexas.edu!swrinde!ucsd!ucbvax!agate!shelby!csli!poser From: poser@csli.Stanford.EDU (Bill Poser) Newsgroups: comp.lang.c Subject: Re: Assembly language to C translation? Message-ID: <15217@csli.Stanford.EDU> Date: 6 Sep 90 19:28:06 GMT References: <480@frf.omron.co.jp> Sender: poser@csli.Stanford.EDU (Bill Poser) Reply-To: poser@csli.stanford.edu (Bill Poser) Organization: Center for the Study of Language and Information, Stanford U. Lines: 10 In article <480@frf.omron.co.jp> jfriedl@frf.omron.co.jp (Jeffrey E.F. Friedl) writes: >I've seen a lot of this->that translaters, but what I really need is >a C to assembler translator. Such a beast exist, for any machine? Unless I misunderstand this query, what you want will be done by the great majority of C compilers. At least on UNIX systems, if you give the compiler the -S option (e.g. cc -S foo.c) it will compile into assembler. Most UNIX C compilers (and at least some for DOS) generate assembler and then call a separate assembler, but delete the intermediate assembler file once they are done with it.