thanx for the post back bro 
i guess the snes emulator is pretty good i just found some things wrong with it. Also im surprised im having problems with the latest version of nes as this should already be perfect i guess.
Well zx-81 i find you to be the best coder in my mind and i know first hand how difficult it is to code for c/c++ . I picked up 3 books and it all seemed confusing. I get alot of it as LUA gives me the basis or at least a concept of how c/c++ code works. The whole things is downloading cywig and psp toolchain can be rather difficult and take a very long time, Iv yet to have patients for it. Im willing to learn and know a few things on just c/c++ alone.
for example i learned this (this is c++ code)
Code:
#include <iostream>
using namespace std;
int main(viod)
{
cout << "im gunntims0103!";
return 0;
}
another little program i know in c++ but cant complile it
Code:
#include <iostream>
using namespace std;
int main(void)
{
int testScore;
cout << &testScore;
return 0;
}
#include <iostream>
using namespace std;
int main(void)
{
short testscore;
float my GPA;
cout << "the address of test score "
<< &testScore << "/n";
cout << "the size of testScore is "
<< sizeof(testscore) << "/n";
cout << "the address of myGPA is << &myGPA << "/n";
cout << "the size of myGPA is "
<< size of (myGPA) << "/n";
return 0:
}
i know a little c++ forgive me if the code was rather choppy...
im still learning
Bookmarks