Ignore:
Timestamp:
Jan 15, 2009, 6:19:08 PM (15 years ago)
Author:
rosiere
Message:

1) Add soc test
2) fix bug (Pc management, Decod and execute, Update prediction ...)

Location:
trunk/Softwares/Common/src/c
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Softwares/Common/src/c/func_io.c

    r81 r101  
    22#include "thread_info.h"
    33
    4 void print(int data)
     4void tty (unsigned char data)
    55{
    6   int *show   =(int*)(TTY_BASE + (get_thread_id() << 4) + 8);
     6  unsigned int * addr =(unsigned int*)(TTY_BASE + (get_thread_id() << 4) + 0);
    77
    8   *(show) = data;
     8  *(addr) = data;
    99}
    1010
    11 void quit (int data)
     11void print (char * data)
    1212{
    13   int *stop   =(int*)(TTY_BASE + (get_thread_id() << 4) + 4);
     13  unsigned int * addr =(unsigned int*)(TTY_BASE + (get_thread_id() << 4) + 0);
    1414
    15   *(stop) = data;
     15  while ((*data) != '\0')
     16    {
     17      *(addr) = (*data);
     18      data++;
     19    }
    1620}
     21
     22void show (unsigned int data)
     23{
     24  unsigned int * addr =(unsigned int*)(TTY_BASE + (get_thread_id() << 4) + 8);
     25
     26  *(addr) = data;
     27}
     28
     29void quit (unsigned int data)
     30{
     31  unsigned int * addr = (unsigned int*)(TTY_BASE + (get_thread_id() << 4) + 4);
     32
     33  *(addr) = data;
     34}
  • trunk/Softwares/Common/src/c/service_clock.c

    r81 r101  
    1 #include <time.h>
    2 #include <errno.h>
    3 #include <sys/lock.h>
    4 #include "mapping_memory.h"
    5 #include "sim2os.h"
    6 #include "service_clock.h"
     1/* #include <time.h> */
     2/* #include <errno.h> */
     3/* #include <sys/lock.h> */
     4/* #include "mapping_memory.h" */
     5/* #include "sim2os.h" */
     6/* #include "service_clock.h" */
    77
    8 unsigned int service_clock ()
    9 {
    10   unsigned int * addr   = (unsigned int *)(SIM2OS_BASE);
    11   unsigned int   result = -1;
     8/* unsigned int service_clock () */
     9/* { */
     10/*   unsigned int * addr   = (unsigned int *)(SIM2OS_BASE); */
     11/*   unsigned int   result = -1; */
    1212
    13   __lock_init    (service_lock);
     13/*   __lock_init    (service_lock); */
    1414 
    15   __lock_acquire (service_lock);
     15/*   __lock_acquire (service_lock); */
    1616
    17   *(addr+0) = (unsigned int)SERVICE_CLOCK;
     17/*   *(addr+0) = (unsigned int)SERVICE_CLOCK; */
    1818 
    19   // memory synchronisation
    20   // (else read (with an address that depend not of store address) can be lunch before a store)
    21   asm("l.msync;");
     19/*   // memory synchronisation */
     20/*   // (else read (with an address that depend not of store address) can be lunch before a store) */
     21/*   asm("l.msync;"); */
    2222
    23   result    = (clock_t) *(addr+1);
     23/*   result    = (clock_t) *(addr+1); */
    2424 
    25   if (result == (clock_t)-1)
    26     errno = (int) *(addr+2);
     25/*   if (result == (clock_t)-1) */
     26/*     errno = (int) *(addr+2); */
    2727
    28   __lock_release (service_lock);
     28/*   __lock_release (service_lock); */
    2929
    30   return result;
    31 }
     30/*   return result; */
     31/* } */
Note: See TracChangeset for help on using the changeset viewer.