From: "George Kinney" Subject: Re: Resources for Inline ASM Newsgroups: comp.os.msdos.djgpp References: <33CB092F DOT 5525 AT lausd DOT k12 DOT ca DOT us> Organization: The Unknown Programmers Message-ID: <01bc91d0$80a42f40$e68033cf@pentium> NNTP-Posting-Host: 207.51.128.230 Date: 16 Jul 97 10:01:40 GMT Lines: 24 To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Precedence: bulk csantill AT lausd DOT k12 DOT ca DOT us wrote in article <33CB092F DOT 5525 AT lausd DOT k12 DOT ca DOT us>... > from: csantilL AT lausd DOT k12 DOT ca DOT us > > Does anybody have or know where to get a solid resource for converting > Intel to AT&T inline ASM opcodes, ie, mov = movb type stuff & maybe an > accompanying cycle count? It would be very nice :] if the list > contained all usable opcodes for AT&T. Any help would be greatly > appreciated. Thanx!] > Check under Contributed Modules in the DJGPP section at www.delorie.com, there is a program called tasm2as that will convert some intel code to AT&T. You may also want to check out NASM, it can compile intel syntax to COFF format object files that can be linked with DJGPP compiled progs. (http://www.cryogen.com/Nasm) Then there is the inline assembly reference from Brennan Underwood, which is available from his site: http://www.rt66.com/~brennan/djgpp/index.html (As well as a lot of other useful info) Anyways, there's some pointers to get you started.