I've been looking for a piece of information and couldn't seem to find it, maybe you guys could give me a hand. It's a simple question:

  • How to use GCC to compile C code into 8088 assembly?

I'm coding a small program in 8088 assembly and would like to know how some things are done by the compiler, this would be really great.

Thanks!

link|improve this question

74% accept rate
2  
The title says 8088 and the tags say 8086. Which one do you need? – WTP'-- Jun 4 '11 at 14:40
1  
Apparently DJ Delorie has a patch: This is not for the average programmer. – pmg Jun 4 '11 at 14:51
2  
@WTP, what is the exact difference between 8086/8088 (besides the bus, instruction queue, etc). The tag is ok. – bestsss Jun 4 '11 at 14:53
1  
@BeOliveira If it could do it natively, there would be no need for the patch. – nbt Jun 4 '11 at 14:58
1  
@BeOliveira Yes, try and find an old DOS C compiler - maybe Turbo C. – nbt Jun 4 '11 at 15:07
show 17 more comments
feedback

4 Answers

up vote 1 down vote accepted

There is an 16 bit release of djgpp (which is based on gcc), which is said to be able to produce 8086/88 code here

link|improve this answer
Well, to close this topic then, I'll accept that current versions of gcc don't produce 8086/88 assembly code and my only options are to use djgpp plugin or other compilers as many of you guys advised. Although the first to tell me about djgpp's plugin was @pmg, I'm marking this as the accepted answer since I can't mark his. Thanks a lot to everyone who helped me with this! Have a great day everyone! – BeOliveira Jun 5 '11 at 17:52
feedback

GCC allows one specify the target machine architecture using -mtune=cpu-arch but it does not support i8088, nowadays. Supported architectures are i386 and newer architectures.

link|improve this answer
-mtune would only be optimization, -march is what you're talking about. – rubenvb Jun 5 '11 at 14:16
feedback

If you can consider other compilers there is always OpenWatcom which is both open source and will produce 16-bit code.

link|improve this answer
Yes, I can consider other compilers and will definitely take a look at OpenWatcom. Thank you very much for the tip on this one! – BeOliveira Jun 5 '11 at 17:55
feedback

The -S flag produces assembler output, though not these days for the 8088.

gcc -S myfile.c

The output will be in myfile.s.

link|improve this answer
I know, I know, but my teacher told me I could generate 8088 assembly with gcc and that's exactly what I need. A code working with 16 bit registers only and limited to the 8086/8088 family processors. – BeOliveira Jun 4 '11 at 14:44
1  
@BeOliveira Well, obviously you should ask your teacher how to do it - that's what they are getting paid for. – nbt Jun 4 '11 at 14:46
Well, yes, but it's a weekend, I can't contact him and still need to do this. Plus, I'm asking you guys and hope someone can help me with this. – BeOliveira Jun 4 '11 at 14:49
@BeOliveira As far as I know, the standard GCC distribution cannot generate 8088 code. There is certainly nothing in the GCC manual that matches "8088" when it is searched. – nbt Jun 4 '11 at 14:51
1  
I suspect your instructor wants 80386 assembly and doesn't understand that 8088 is not the same thing.... Lots of CS instructors are incompetent. – R.. Jun 4 '11 at 15:13
show 3 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.