Java equivalent of outportb?

2001-06-09 Thread Homayoun Yousefi'zadeh
Hello All, Can somebody kindly tell me what are the equivalent classes/methods in Java for outportb/inportb functions in C? Here is the C function: void main() { unsigned short port=888; int i; for(i=0; i<256; ++i) outportb(port, i); } This is at the device level and not the host

Re: Java equivalent of outportb?

2001-06-09 Thread vijay kukreja
hi all, can anyone tell me if there is a way to trace into source code and find out which class is invoked and which method in various java classes. i don't have documentation of a project which i've been assigned to and need to reverse engineer the classes and then get the various paths from th