Changeset d630139 in mainline for uspace


Ignore:
Timestamp:
2007-02-12T19:13:55Z (18 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
0f6a3376
Parents:
bea09de6
Message:

Add arm32 architecture. The 32 suffix is used to specify that 16-bit Thumb
instructions are not used. The arm32 code is mostly composed of placeholders
that need to be replaced by real implementation. So far, the arm32 tree
only compiles. If run under GXEmul simulator, an infinit loop at the
kernel entry point will be entered.

Location:
uspace
Files:
21 added
2 edited

Legend:

Unmodified
Added
Removed
  • uspace/libc/include/ctype.h

    rbea09de6 rd630139  
    4444{
    4545        switch(c) {
    46                 case ' ':
    47                 case '\n':
    48                 case '\t':
    49                 case '\f':
    50                 case '\r':
    51                 case '\v':
    52                         return 1;
    53                         break;
    54                 default:
    55                         return 0;
     46        case ' ':
     47        case '\n':
     48        case '\t':
     49        case '\f':
     50        case '\r':
     51        case '\v':
     52                return 1;
     53                break;
     54        default:
     55                return 0;
    5656        }
    5757}
  • uspace/uspace.config

    rbea09de6 rd630139  
    33# Architecture
    44@ "amd64" AMD64/Intel EM64T
     5@ "arm32" ARM 32-bit
    56@ "ia32" Intel IA-32
    67@ "ia64" Intel IA-64
Note: See TracChangeset for help on using the changeset viewer.