I have an 8086 CPU emulator. It emulates only 8086 instructions. I am searching now for a C compiler to target this emulator with. Is there any C compiler out there that can do this?

Also, having a usable libc and such is not important to me. The emulator uses custom(ie, non-PC) hardware and therefor any libc or even ctr0 would probably have to be rewritten anyway

link|improve this question

80% accept rate
1  
Any 16-bit DOS compiler. – Hans Passant Dec 20 '10 at 20:12
Sadly, yes, too many of them, and too many college professors making their students use them.... – R.. Dec 20 '10 at 20:36
@R.. @Hans many of the compilers I've seen target higher up than the 8086, usually they go up to 8186 and 8286 opcodes. – Earlz Dec 21 '10 at 21:10
@Earlz What about MS C compiler for DOS (QuickC) (as far as I remember, MS-DOS (or at least some core parts of it) never relied on anything above 8086, so..) One link I found (which reports tech problems at the moment) is vetusware.com/download/QuickC%202.51/?id=3503, and there're others too. Hope that will help you and (if too late) anyone interested. – mlvljr Aug 11 '11 at 15:55
1  
@mlv thanks but I was looking more for a modernish compiler supporting at least C89 – Earlz Aug 11 '11 at 15:57
feedback

2 Answers

link|improve this answer
Are you sure Digital Mars will generate binaries using only 8086 opcodes? – Earlz Dec 20 '10 at 19:51
+1 for Open Watcom – jschmier Dec 20 '10 at 19:52
@Earlz: Digital Mars can target the 8088, which is the same instruction set as the 8086: digitalmars.com/ctg/sc.html#dash023456 – Michael Burr Dec 20 '10 at 19:57
1  
Another compiler that might be worth trying (I'm not sure though - it needs an MS-DOS environment to run in): Turbo C++ 2: edn.embarcadero.com/article/20841 – Michael Burr Dec 20 '10 at 20:05
@Mich no thanks, I'll stay as far away from Turbo C as possible lol – Earlz Dec 21 '10 at 21:00
show 1 more comment
feedback

bcc - Bruce's C compiler

From bcc(1) - Linux man page:

Description

Bcc is a simple C compiler that produces 8086 assembler, in addition compiler compile time options allow 80386 or 6809 versions. The compiler understands traditional K&R C with just the restriction that bit fields are mapped to one of the other integer types.

The default operation is to produce an 8086 executable called a.out from the source file.

Open Watcom

From the description of compiler option / 80x86 run-time convention 0 in Open Watcom C/C++ User’s Guide (PDF link):

(16-bit only) The compiler will make use of only 8086 instructions in the generated object code. This is the default. The resulting code will run on 8086 and all upward compatible processors. The macro __SW_0 will be predefined if "0" is selected

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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