Subversion Repositories HelenOS-historic

Compare Revisions

Ignore whitespace Rev 937 → Rev 938

/kernel/trunk/arch/ppc32/include/types.h
32,11 → 32,14
#define NULL 0
 
typedef signed char __s8;
typedef signed short __s16;
typedef signed long __s32;
typedef signed long long __s64;
 
typedef unsigned char __u8;
typedef unsigned short __u16;
typedef unsigned long __u32;
typedef long long __u64;
typedef unsigned long long __u64;
 
typedef __u32 __address;
typedef __u32 pfn_t;
/kernel/trunk/arch/ppc32/include/elf.h
26,18 → 26,11
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
 
#ifndef __ia32_ELF_H__
#define __ia32_ELF_H__
#ifndef __ppc32_ELF_H__
#define __ppc32_ELF_H__
 
#include <elf32.h>
 
#define ELF_MACHINE EM_PPC
#define ELF_DATA_ENCODING ELFDATA2MSB
#define ELF_CLASS ELFCLASS32
 
/*
* Main ELF loader function
*/
#define elf_load(header, as) elf32_load(header, as)
 
#endif
/kernel/trunk/arch/ppc32/Makefile.inc
40,6 → 40,8
 
LFLAGS += -no-check-sections -N
 
DEFS += -D__32_BITS__
 
## Own configuration directives
#