12 lines
240 B
C++
12 lines
240 B
C++
#include "../headers/machine.h"
|
|
#include "../headers/cpu.h"
|
|
|
|
int main(int argc, char const *argv[]){
|
|
machine m;
|
|
cpu procesor(&m);
|
|
procesor.setSpeed(100);
|
|
procesor.start();
|
|
//stuff
|
|
procesor.stop();
|
|
return 0;
|
|
}
|