From: acottrel AT magna DOT com DOT au (Andrew Cottrell) Newsgroups: comp.os.msdos.djgpp Subject: Re: Porting Watcom C++ project Date: Sat, 05 Apr 1997 01:46:10 GMT Organization: Magna Data Internet Solutions Lines: 24 Message-ID: <3347a87c.2631259@203.4.212.50> References: <1352033401-1427726 AT netinfo DOT fr> Reply-To: acottrel AT magna DOT com DOT au NNTP-Posting-Host: syd01-197.magna.com.au Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp >Also, for this project, they are a set of routine for driving the SVGA card, >in VESA mode, with some routines in assembler (intel code). Check out ALLEGRO library. You may not need to re-write them. >How do I proceed rewrite the assembler in AT&T or compile it with an other assembler and >use it like that ? Check out NASM, its in the FAQ. There is an Intel -> AT&T converter (TA2AS) available or the otherway is AS2TASM. Check out the mail archives at www.delorie.com/djgpp or the following sites: NASM: ftp://yoda.trin.cam.ac.uk/pub/simon/nasm093.zip or ftp://ftp.simtel.net/pub/simtelnet/msdos/asmutil/nasm093.zip ftp://ftp.simtel.net/pub/simtelnet/msdos/asmutil/nasm093s.zip AS2TASM: http://cip.physik.uni-wuerzburg.de/~mlkessle/welcome.eng.html TA2AS: Any DJGPP site, it's in the contrib diretory. >The assembler of GCC is a good assembler ? If not, can I >use wasm (the assembler of Watcom, that can build 32 bits applications) ? I haven't used GAS. WASM could be used if if it outputs the correct object format (COFF). Check out the info here first as it has graphics links, assembler links: http://www.rt66.com/~brennan/djgpp/#perfprog Andrew