예제 #1
0
파일: main.cpp 프로젝트: chartrix/Sm4rtPS
int main(){

    int noCases;
    int countCases = 0;
    
    
    cin >> noCases;
    cout<<endl;
    while( countCases < noCases ){
        Interpreter interp;
        interp.fillRAM();
        cout<<"\n" <<interp.analyzeRegisters() <<endl;
        countCases++;
    }//while


    return 1;
}