So I have attempted to start trying out some ps2 side network communication and it did not go all that well. First I compiled the ps2smap.irx and converted it to a *.o. Then I added that to the Makefile. Copied the smap.h and types.h (required by the smap.h) to the directory with my makefile. Then made a quick main.c just to test the compiling. It worked. Then I added a function from ps2smap and compiled it. It gave me an error stating that SMapInit is undefined. Can anyone help me getting started with this?
main.c:
main.c:
Code:
#include <debug.h>
#include <smap.h>
#include <stdio.h>
int main(void)
{
printf("Begun\n");
SMapInit(ARG1, ARG2, ARG3); //I was just checking that it would recognize SMapInit, then I would worry about the correct arguments
return 0;
}
!
Comment