Ignore:
Timestamp:
Jul 18, 2013, 4:12:05 PM (11 years ago)
Author:
cfuguet
Message:

Adding tsar_generic_xbar platform in branches/v5/platforms:

  • This platform contains a third local crossbar interconnect for the CLACK network.
  • It works only in a monocluster topology
Location:
branches/v5/platforms/tsar_generic_xbar
Files:
1 edited
1 copied

Legend:

Unmodified
Added
Removed
  • branches/v5/platforms/tsar_generic_xbar/top.cpp

    r438 r447  
    142142//////////////////////i/////////////////////////////////////
    143143
    144 #include "giet_vm/hard_config.h"
     144#include "hard_config.h"
    145145
    146146////////////////////////////////////////////////////////////
     
    166166
    167167#define BDEV_SECTOR_SIZE      512
    168 #define BDEV_IMAGE_NAME       "giet_vm/display/images.raw"
     168#define BDEV_IMAGE_NAME       "images.raw"
    169169
    170170#define NIC_RX_NAME           "giet_vm/nic/rx_packets.txt"
     
    181181//////////////////////i/////////////////////////////////////
    182182
    183 #define SOFT_NAME        "giet_vm/soft.elf"
     183#define SOFT_NAME             "soft.elf"
    184184
    185185////////////////////////////////////////////////////////////
     
    249249
    250250   char     soft_name[256]   = SOFT_NAME;          // pathname to binary code
    251    size_t   ncycles          = 1000000000;         // simulated cycles
     251   uint64_t ncycles          = 100000000000;       // simulated cycles
    252252   char     disk_name[256]   = BDEV_IMAGE_NAME;    // pathname to the disk image
    253253   char     nic_rx_name[256] = NIC_RX_NAME;        // pathname to the rx packets file
     
    743743   signal_resetn = true;
    744744
    745    for (size_t n = 1; n < ncycles; n++)
     745   for (uint64_t n = 1; n < ncycles; n++)
    746746   {
    747747      // Monitor a specific address for L1 & L2 caches
Note: See TracChangeset for help on using the changeset viewer.