Date: Thu, 7 Jul 94 15:23:19 -0400 From: dj AT ctron DOT com (DJ Delorie) To: SGW46959M021 AT DAFFY DOT MILLERSV DOT EDU Cc: djgpp AT sun DOT soe DOT clarkson DOT edu Subject: Re: inline assembly The best way to tell what's going on is to assemble a test case with gas, and then use debug32 to unassemble it. Debug32 uses Intel format (similar to tasm) for it's display. .text start: movsl gas foo.s -o foo.o ld foo.o -o foo go32 -d edebug32 foo >> u start DJ