Ignore:
Timestamp:
Oct 5, 2018, 12:08:35 AM (6 years ago)
Author:
alain
Message:

Introduction of the soclib_mty driver for the TSAR-LETI architecture.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/hal/tsar_mips32/core/hal_remote.c

    r501 r570  
    5454
    5555/////////////////////////////////
    56 void hal_remote_sw( xptr_t    xp,
     56void hal_remote_s32( xptr_t    xp,
    5757                    uint32_t  data )
    5858{
     
    8080
    8181//////////////////////////////////
    82 void hal_remote_swd( xptr_t    xp,
     82void hal_remote_s64( xptr_t    xp,
    8383                     uint64_t  data )
    8484{
     
    113113                     void *      pt )
    114114{
    115     hal_remote_sw ( xp , (uint32_t)pt );
     115    hal_remote_s32 ( xp , (uint32_t)pt );
    116116}
    117117
     
    143143
    144144////////////////////////////////////
    145 uint32_t hal_remote_lw( xptr_t  xp )
     145uint32_t hal_remote_l32( xptr_t  xp )
    146146{
    147147        uint32_t data;
     
    169169
    170170/////////////////////////////////////
    171 uint64_t hal_remote_lwd( xptr_t  xp )
     171uint64_t hal_remote_l64( xptr_t  xp )
    172172{
    173173    uint32_t data_lsb;
     
    200200void * hal_remote_lpt( xptr_t    xp )
    201201{
    202     return (void *)hal_remote_lw ( xp );
     202    return (void *)hal_remote_l32 ( xp );
    203203}
    204204
Note: See TracChangeset for help on using the changeset viewer.