From: "Lauren N. Liberda"
qemu forks on github are typically the way of work on changes
to be upstreamed later, such as support for new devices. currently,
the workflow prevents any external contributors from submitting
code changes, and blindly points them to upstream instead.
Sig
Thanks for the fast response, I really appreciate it. I implemented all of
your suggestions and now it all works perfectly!
On Mon, Dec 23, 2013 at 3:02 AM, Peter Maydell wrote:
> On 23 December 2013 03:45, Lauren E Guckert wrote:
> > IN TRANSLATE.C:
> > DISA
st_trace64(uint64_t arg1, uint64_t arg2)
{
printf(PC = %016lx\t OPCODE:%08x\n", (unsigned long
int)arg1,(unsigned int)arg2);
}
void tcg_helper_fast_trace32(uint32_t arg1, uint32_t arg2)
{
printf("PC = %016lx\t OPCODE = %08x\n", (unsigned long
int)arg1,(unsigned int)arg2);
}
thanks,
Lauren