[Qemu-devel] binary injection

2010-04-07 Thread Aravind Prakash
Hello, I am trying to find if there is a way to inject a given binary into guest code. If there isn't a way to do it, I would like to write a module which would let us do it. Can somebody suggest what would be nice to have in such a module? Thanks, Aravind.

[Qemu-devel] Regarding tcg_gen_helper

2010-03-23 Thread Aravind Prakash
Hello, My name is Aravind. I am working on a project which involves inserting code to call one of my functions. This is what it looks like: //The function to be called. void log_entry(int reg, int data) { printf("REG access\n"); printf("Data got REG = %d and data = %d\n", reg, data);