Changeset e3c762cd in mainline for arch/mips32/src/asm.S


Ignore:
Timestamp:
2006-05-05T11:59:19Z (19 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
de07bcf
Parents:
22cf454d
Message:

Complete implementation of copy_from_uspace() and copy_to_uspace()
for amd64 and ia32. Other architectures still compile and run,
but need to implement their own assembly-only memcpy(), memcpy_from_uspace(),
memcpy_to_uspace() and their failover parts. For these architectures
only dummy implementations are provided.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • arch/mips32/src/asm.S

    r22cf454d re3c762cd  
    5858        nop
    5959
     60
    6061.global memcpy
     62.global memcpy_from_uspace
     63.global memcpy_to_uspace
     64.global memcpy_from_uspace_failover_address
     65.global memcpy_to_uspace_failover_address
    6166memcpy:
     67memcpy_from_uspace:
     68memcpy_to_uspace:
    6269        j _memcpy
    6370        nop
     71
     72memcpy_from_uspace_failover_address:
     73memcpy_to_uspace_failover_address:
     74        j memcpy_from_uspace_failover_address
     75        nop
     76
     77
    6478
    6579.macro fpu_gp_save reg ctx
Note: See TracChangeset for help on using the changeset viewer.