Tagged Questions

6
votes
1answer
231 views

Explain how the AF flag works in an x86 instructions?

I have a little 8086 emulator and I've had a long standing bug for like 2 years now that AF does not behave properly inside of sub and add instructions. My current way of computing its value is this ...
6
votes
2answers
498 views

Is there a C compiler that targets the 8086?

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 ...
3
votes
3answers
95 views

C: How do I simulate 8086 registers?

Ohai, I'm currently trying to implement an 8086 ASM debugger for learning purposes. Until now, I tried to simulate the 8 and 16 bit registers with char arrays but this approach is driving me nuts, ...
2
votes
2answers
210 views

Convert C/C++ to 8086/88 Assembly

Is there any way to convert C/C++ to Assembly not to HEX. Not like something that gcc or other compiler done(C/C++ --> ASM --> HEX). Only Convert It to ASM. Is there any way to do it by gcc,I mean ...