search for: 0b8cece

Displaying 2 results from an estimated 2 matches for "0b8cece".

2015 Mar 06
0
[klibc:master] add-mips64-support-headers
..._f31; - unsigned long __fcr31; unsigned long __unused; } __attribute__ ((aligned(8))); diff --git a/usr/include/arch/mips/machine/asm.h b/usr/include/arch/mips64/machine/asm.h similarity index 69% copy from usr/include/arch/mips/machine/asm.h copy to usr/include/arch/mips64/machine/asm.h index 0b8cece..42dcaa4 100644 --- a/usr/include/arch/mips/machine/asm.h +++ b/usr/include/arch/mips64/machine/asm.h @@ -1,27 +1,32 @@ /* - * arch/mips/include/machine/asm.h + * arch/mips64/include/machine/asm.h */ #ifndef _MACHINE_ASM_H #define _MACHINE_ASM_H /* - * Symbolic register names for 32 bit A...
2014 Mar 11
4
[PATCH] add mips64 support
...ng __f31; + unsigned long __fcr31; + unsigned long __unused; +} __attribute__ ((aligned(8))); + +typedef struct __jmp_buf jmp_buf[1]; + +#endif /* _KLIBC_ARCHSETJMP_H */ diff --git a/usr/include/arch/mips64/machine/asm.h b/usr/include/arch/mips64/machine/asm.h new file mode 100644 index 0000000..0b8cece --- /dev/null +++ b/usr/include/arch/mips64/machine/asm.h @@ -0,0 +1,76 @@ +/* + * arch/mips/include/machine/asm.h + */ + +#ifndef _MACHINE_ASM_H +#define _MACHINE_ASM_H + +/* + * Symbolic register names for 32 bit ABI + */ + +#define zero $0 /* wired zero */ +#define AT $1 /* ass...