I want to simulate perceptron branch predictor with simplescalar
. I write a simple code in c programming language. In simplescalar
installation guide this command will compile c code:
$ $IDIR/bin/sslittle-na-sstrix-gcc –o hello hello.c
but I don't have bin directory. I modified it to this command:
$ $IDIR/sslittle-na-sstrix-gcc –o hello hello.c
again the problem is that there is no sslittle-na-sstrix-gcc
directory. I don't know what I should do??
thanks in advance.