/* * SOCLIB_LGPL_HEADER_BEGIN * * This file is part of SoCLib, GNU LGPLv2.1. * * SoCLib is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; version 2.1 of the License. * * SoCLib is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with SoCLib; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA * 02110-1301 USA * * SOCLIB_LGPL_HEADER_END * * Copyright (c) UPMC, Lip6 * Cesar Fuguet , 2014 */ #ifndef DSPIN_ROUTER_CONFIG_H #define DSPIN_ROUTER_CONFIG_H // Port indexing enum { REQ_NORTH = 0, REQ_SOUTH = 1, REQ_EAST = 2, REQ_WEST = 3, REQ_LOCAL = 4, REQ_NOP = 5, }; // Black-Hole position enum { NORMAL = 0, N_OF_X = 1, NE_OF_X = 2, E_OF_X = 3, SE_OF_X = 4, S_OF_X = 5, SW_OF_X = 6, W_OF_X = 7, NW_OF_X = 8 }; #endif /* DSPIN_ROUTER_CONFIG_H */ // Local Variables: // tab-width: 4 // c-basic-offset: 4 // c-file-offsets:((innamespace . 0)(inline-open . 0)) // indent-tabs-mode: nil // End: // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=4:softtabstop=4