PDA

View Full Version : Emulator Output window messages


Exarch31
02-04-2003, 11:05 AM
Hey,
What can I do do decipher the messages in the emulator debug window? I'm using the DBGPRINTF() which is somewhat useful, but I've run into a case where I have:

DBGPRINTF("before fxn call")
dostuff()


static int dostuff()
{
*vars*
DBGPRINTF("in dostuff")
*logic*
}

and the 2nd message is never getting printed.
But I do get:
#*g** = -1
#*gRE = 16809984

that -1 could be useful, if I could figure out what's creating it...

hsiaod
03-17-2003, 06:30 PM
hi,
would you like sharing how you get messages output to the debug window??
I tried DBGPRINTF, but it can't even compile...it would show _DBGPRINTF as unresolved reference.
I included all header files mentioned in the documentation, all were fine except the compiler can't find "AEEStaticStdLib.h" is missing...

is there anything else you had to do the get this to work?

Thanks,
David

arunbangari
03-17-2003, 09:17 PM
Exarch31, which version of emulator are u using..? Use 2.0 emulator for your debugging purpose. Its much more better than older versions of emulator.

hsiaod
03-18-2003, 01:20 PM
Hi,
I'm using v2.0 of the SDK.
i'm using MS Visual Studio Enterprise edition.

any special settings i need to set with the SDK, emulator, or the compiler?

where can i find the necessnary files for AEEStaticStdLib?

thanks,