Changeset 570 for trunk/hal/x86_64/core


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/x86_64/core/hal_remote.c

    r457 r570  
    3030}
    3131
    32 void hal_remote_sw(xptr_t xp, uint32_t data)
     32void hal_remote_s32(xptr_t xp, uint32_t data)
    3333{
    3434        *(uint32_t *)xp = data;
    3535}
    3636
    37 void hal_remote_swd(xptr_t xp, uint64_t data)
     37void hal_remote_s64(xptr_t xp, uint64_t data)
    3838{
    3939        *(uint64_t *)xp = data;
     
    4242void hal_remote_spt(xptr_t xp, void *pt)
    4343{
    44         hal_remote_swd(xp, (uint64_t)pt);
     44        hal_remote_s64(xp, (uint64_t)pt);
    4545}
    4646
     
    5050}
    5151
    52 uint32_t hal_remote_lw(xptr_t xp)
     52uint32_t hal_remote_l32(xptr_t xp)
    5353{
    5454        return *(uint32_t *)xp;
    5555}
    5656
    57 uint64_t hal_remote_lwd(xptr_t xp)
     57uint64_t hal_remote_l64(xptr_t xp)
    5858{
    5959        return *(uint64_t *)xp;
     
    6262void *hal_remote_lpt(xptr_t xp)
    6363{
    64         return (void *)hal_remote_lwd(xp);
     64        return (void *)hal_remote_l64(xp);
    6565}
    6666
Note: See TracChangeset for help on using the changeset viewer.