Changeset 282f4724 in mainline for arch/mips32/loader/msim.h


Ignore:
Timestamp:
2006-06-25T21:02:16Z (19 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
ce8725be
Parents:
7431e867
Message:

Cleanup in the boot infrastructure.
This commit tries to separate generic stuff from mips32 specific stuff.
Other architectures will follow.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • arch/mips32/loader/msim.h

    r7431e867 r282f4724  
    3030#define __MSIM_H__
    3131
    32 #define NULL 0
    33 #define false 0
    34 #define true 1
    35 
    36 typedef __builtin_va_list va_list;
    37 
    38 #define va_start(ap, last)              __builtin_va_start(ap, last)
    39 #define va_arg(ap, type)                __builtin_va_arg(ap, type)
    40 #define va_end(ap)                      __builtin_va_end(ap)
    41 
    4232extern void init(void);
    4333extern void halt(void);
    4434
    45 extern void write(const char *str, const int len);
    4635extern void *translate(void *addr);
    4736
Note: See TracChangeset for help on using the changeset viewer.