Changeset e3c762cd in mainline for arch/sparc64
- Timestamp:
- 2006-05-05T11:59:19Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- de07bcf
- Parents:
- 22cf454d
- Location:
- arch/sparc64
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
arch/sparc64/include/interrupt.h
r22cf454d re3c762cd 31 31 32 32 #include <typedefs.h> 33 #include <arch/types.h> 33 34 34 35 #define IRQ_COUNT 1 /* TODO */ … … 44 45 #define trap_virtual_eoi() 45 46 47 struct istate { 48 }; 49 50 static inline void istate_set_retaddr(istate_t *istate, __address retaddr) 51 { 52 /* TODO */ 53 } 54 46 55 extern void interrupt_register(int n, const char *name, iroutine f); 47 56 -
arch/sparc64/src/asm.S
r22cf454d re3c762cd 30 30 31 31 .global memcpy 32 .global memcpy_from_uspace 33 .global memcpy_to_uspace 34 .global memcpy_from_uspace_failover_address 35 .global memcpy_to_uspace_failover_address 32 36 .global memsetb 33 37 34 38 memcpy: 39 memcpy_from_uspace: 40 memcpy_to_uspace: 41 35 42 b _memcpy 43 nop 44 45 memcpy_from_uspace_failover_address: 46 memcpy_to_uspace_failover_address: 47 b memcpy_from_uspace_failover_address 36 48 nop 37 49
Note:
See TracChangeset
for help on using the changeset viewer.