URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [rtems-20020807/] [c/] [src/] [lib/] [libbsp/] [m68k/] [mvme136/] [shmsupp/] [addrconv.c] - Rev 1765
Compare with Previous | Blame | View Log
/* Shm_Convert_address * * This MVME136 has a "normal" view of the VME address space. * No address range conversion is required. * * Input parameters: * address - address to convert * * Output parameters: * returns - converted address * * COPYRIGHT (c) 1989-1999. * On-Line Applications Research Corporation (OAR). * * The license and distribution terms for this file may be * found in the file LICENSE in this distribution or at * http://www.OARcorp.com/rtems/license.html. * * addrconv.c,v 1.8 1999/11/30 19:57:44 joel Exp */ #include <rtems.h> #include <bsp.h> #include <shm_driver.h> void *Shm_Convert_address( void *address ) { return ( address ); }