Tagged Questions

5
votes
2answers
151 views

x87 FPOP and FCOM instructions - how do these work?

I've been tasked with writing a simple application in mixed C/ASM that has to use math coprocessor. There's the function cylinder(float x, float y, float z) that returns 1 if the given point is ...
2
votes
4answers
164 views

How are heaps created in mixed language applications?

We have a front end written in Visual Basic 6.0 that calls several back end DLLs written in mixed C/C++. The problem is that each DLL appears to have its own heap and one of them isn’t big enough. ...