source: trunk/Softwares/Test/Test_067/src/c/main.c @ 118

Last change on this file since 118 was 118, checked in by rosiere, 15 years ago

1) Stat List : scan all queue to find free register
2) Write_queue : test "genMealy" add bypass [0]
3) Functionnal_unit : add const parameters to add or not the pipeline_in
4) Load Store Unit : if load make an exception, free nb_check
5) Debug, change test to add model

  • Property svn:keywords set to Id
File size: 413 bytes
Line 
1// $Id: main.c 118 2009-05-20 22:01:32Z rosiere $
2
3//=====[ main ]=================================================================
4/*
5 * All thread execute this routine
6 * Initialize the thread and attribute a Workload at each thread
7 */
8
9#include <stdlib.h>
10#include <stdio.h>
11#include <unistd.h>
12#include <string.h>
13
14int main()
15{
16  const int iteration = 10;
17 
18  for (int i=0; i<iteration; ++i)
19    printf("i : %d\n",i);
20 
21  exit (0);
22
23  while (1);
24}
Note: See TracBrowser for help on using the repository browser.