f865486f1e
also figured out hello was caching stopped that to make results comparable even wrote a hello assembler version which is just 10% faster than soml :-)
10 lines
116 B
C
10 lines
116 B
C
#include<stdio.h>
|
|
|
|
int main(void)
|
|
{
|
|
int counter = 100352 - 352;
|
|
while(counter) {
|
|
counter = counter - 1;
|
|
}
|
|
}
|