Changeset 3156582 in mainline for arch/mips/include/types.h


Ignore:
Timestamp:
2005-09-11T12:48:42Z (20 years ago)
Author:
Ondrej Palkovsky <ondrap@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
8e3fb24c
Parents:
8491c48
Message:

Updated symtab so that it works correctly with BE architectures.
Changed compiler for BE MIPS to be mips-sgi-irix5, because
mipsel -EB does not behave correctly.
Doc updates to amd64.
Added ARC BIOS support to MIPS architecture. Putchar works correctly,
kernel passed FPU & some rwlock tests.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • arch/mips/include/types.h

    r8491c48 r3156582  
    3333
    3434typedef signed char __s8;
     35typedef unsigned char __u8;
    3536
    36 typedef unsigned char __u8;
     37typedef signed short __s16;
    3738typedef unsigned short __u16;
     39
    3840typedef unsigned long __u32;
    39 typedef long long __u64;
     41typedef signed long __s32;
     42
     43typedef unsigned long long __u64;
     44typedef signed long long __s64;
    4045
    4146typedef __u32 __address;
Note: See TracChangeset for help on using the changeset viewer.