View Single Post
  #13 (permalink)  
Old March 21st, 2006, 06:03 PM
szevvy szevvy is offline
Hoping For A Cool Title
 
Join Date: May 2005
Posts: 55
What I'll do is (hopefully today) post up some code for someone who's rooted in to run - it'll be something along the lines of

Quote:
#include <iostream>

int main(){
void * address1 = (void*)(0x4052345);
void * address2 = (void*)(0x4356363);
std::cout << *((unsigned int*)address1) << ", " << *((unsigned int*)address2);
}
or similar (with proper values, not ones I made up just then ), which'll mean I'll be able to start tracking down the problem with the emulator. Is that in the scope of what you guys are able to run? There might be a few of these over the course of some time until I figure out what the hell's going on. In the meantime - I've knocked up an old Linux box to try and compile and so forth. Should I use Fedora or Redhat?
Reply With Quote