Changeset 4fade3e in mainline


Ignore:
Timestamp:
2005-09-20T10:07:16Z (19 years ago)
Author:
Ondrej Palkovsky <ondrap@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
c0a91d1
Parents:
7e9769f
Message:

Added support for msim with 4kc instructions.
Fixed support for upstream msim.

Small boot fix on Indy.

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • arch/mips32/Makefile.inc

    r7e9769f r4fade3e  
    4949# MSIM needs lwl/swl patch & 4kc instruction patch to work
    5050# otherwise add -mmemcpy -mips3
     51ifeq (${MACHINE},msim4kc)
     52 BFD = binary
     53 CFLAGS += -msoft-float -march=4kc
     54 KERNEL_LOAD_ADDRESS = 0x80100000
     55 BFD_NAME=elf32-little
     56endif
     57
    5158ifeq (${MACHINE},msim)
    5259 BFD = binary
    53  CFLAGS += -msoft-float -march=4kc
     60 CFLAGS += -msoft-float -mips3
    5461 KERNEL_LOAD_ADDRESS = 0x80100000
    5562 BFD_NAME=elf32-little
  • arch/mips32/src/drivers/arc.c

    r7e9769f r4fade3e  
    158158        arc_memdescriptor_t *desc;
    159159
    160         if (!arc_enabled()) {
    161                 printf("ARC not enabled.\n");
     160        if (!arc_enabled())
    162161                return;
    163         }
    164162
    165163        printf("Memory map:\n");
  • src/build.mips32

    r7e9769f r4fade3e  
    22
    33if [ -z "$1" ]; then
    4   echo "Usage: $0 [msim|simics|lgxemul|bgxemul|indy]"
     4  echo "Usage: $0 [msim|msim4kc|simics|lgxemul|bgxemul|indy]"
    55  exit 1
    66else
Note: See TracChangeset for help on using the changeset viewer.