LOGIN   :::   RECOVER PASS   :::   GET ACCOUNT    
Browse
  • Projects
  • Code (CVS)
  • Forums
  • News
  • Articles
  • Polls
  •  
    OpenCores
  • FAQ
  • CVS HowTo
  • Mission
  • Media
  • Tools
  • Sponsors
  • Mirrors
  • Logos
  • Contact us
  •  
    Tools
  • Search
      
  • Download Cores (CVSGet)
  •  
    More
  • Wishbone
  • Perlilog
  • EDA tools
  • OpenTech CD
  •  
    Navigation: All forums > Cvs-checkins > Message List > Message Post

    Message

    Reply | Reply all
    Date Prev | Date Next | Thread Prev | Thread Next Date Index | Thread Index

    From: cvs at opencores.org<cvs@o...>
    Date: Mon Feb 12 06:20:51 CET 2007
    Subject: [cvs-checkins] MODIFIED: mlite ...
    Top
    Date: 00/07/02 12:06:20

    Modified: mlite/tools makefile
    Log:
    Changed test.exe to test.axf


    Revision Changes Path
    1.15 mlite/tools/makefile

    http://www.opencores.org/cvsweb.shtml/mlite/tools/makefile.diff?r1=1.14&r2=1.15

    (In the diff below, changes in quantity of whitespace are not shown.)

    Index: makefile
    ===================================================================
    RCS file: /cvsroot/rhoads/mlite/tools/makefile,v
    retrieving revision 1.14
    retrieving revision 1.15
    diff -u -b -r1.14 -r1.15
    --- makefile 13 Jan 2007 22:53:04 -0000 1.14
    +++ makefile 12 Feb 2007 05:20:51 -0000 1.15
    @@ -1,7 +1,7 @@
    # The MIPS gcc compiler must use the cygwin1.dll that came with the compiler.
    # The CC_X86 is for compiling tools on your PC.
    # The GCC_MIPS is for compiling code on the target.
    -# Convert_bin changes test.exe into code.txt which is used by the VHDL.
    +# Convert_bin changes test.axf into code.txt which is used by the VHDL.

    # Customize for Linux
    #CC_X86 = gcc -Wall -O -g
    @@ -50,15 +50,15 @@

    opcodes:
    $(AS_MIPS) -o opcodes.o opcodes.asm
    - $(LD_MIPS) -Ttext 0 -eentry -Map test.map -s -N -o test.exe opcodes.o
    - -@$(DUMP_MIPS) --disassemble test.exe > test.lst
    + $(LD_MIPS) -Ttext 0 -eentry -Map test.map -s -N -o test.axf opcodes.o
    + -@$(DUMP_MIPS) --disassemble test.axf > test.lst
    convert_bin.exe
    $(CP) code.txt $(VHDL_DIR)

    opcodes2:
    $(AS_MIPS) -o opcodes.o opcodes.asm
    - $(LD_MIPS) -Ttext 0x10000000 -eentry -Map test.map -s -N -o test.exe opcodes.o
    - -@$(DUMP_MIPS) --disassemble test.exe > test.lst
    + $(LD_MIPS) -Ttext 0x10000000 -eentry -Map test.map -s -N -o test.axf opcodes.o
    + -@$(DUMP_MIPS) --disassemble test.axf > test.lst
    convert_bin.exe
    $(CP) code.txt $(VHDL_DIR)

    @@ -66,9 +66,9 @@
    $(AS_MIPS) -o boot.o boot.asm
    $(GCC_MIPS) test.c
    $(GCC_MIPS) no_os.c
    - $(LD_MIPS) -Ttext 0 -eentry -Map test.map -s -N -o test.exe \
    + $(LD_MIPS) -Ttext 0 -eentry -Map test.map -s -N -o test.axf \
    boot.o test.o no_os.o
    - -@$(DUMP_MIPS) --disassemble test.exe > test.lst
    + -@$(DUMP_MIPS) --disassemble test.axf > test.lst
    convert_bin.exe
    $(CP) code.txt $(VHDL_DIR)

    @@ -76,9 +76,9 @@
    $(AS_MIPS) -o boot.o boot.asm
    $(GCC_MIPS) count.c
    $(GCC_MIPS) no_os.c
    - $(LD_MIPS) -Ttext 0 -eentry -Map test.map -s -N -o test.exe \
    + $(LD_MIPS) -Ttext 0 -eentry -Map test.map -s -N -o test.axf \
    boot.o count.o no_os.o
    - -$(DUMP_MIPS) --disassemble test.exe > test.lst
    + -$(DUMP_MIPS) --disassemble test.axf > test.lst
    convert_bin.exe
    $(CP) code.txt $(VHDL_DIR)

    @@ -86,27 +86,27 @@
    $(AS_MIPS) -o boot.o boot.asm
    $(GCC_MIPS) count.c
    $(GCC_MIPS) no_os.c
    - $(LD_MIPS) -Ttext 0x10000000 -eentry -Map test.map -s -N -o test.exe \
    + $(LD_MIPS) -Ttext 0x10000000 -eentry -Map test.map -s -N -o test.axf \
    boot.o count.o no_os.o
    - -$(DUMP_MIPS) --disassemble test.exe > test.lst
    + -$(DUMP_MIPS) --disassemble test.axf > test.lst
    convert_bin.exe
    $(CP) code.txt $(VHDL_DIR)

    pi:
    $(AS_MIPS) -o boot.o boot.asm
    $(GCC_MIPS) pi.c
    - $(LD_MIPS) -Ttext 0 -eentry -Map test.map -s -N -o test.exe \
    + $(LD_MIPS) -Ttext 0 -eentry -Map test.map -s -N -o test.axf \
    boot.o pi.o
    - @$(DUMP_MIPS) --disassemble test.exe > test.lst
    + @$(DUMP_MIPS) --disassemble test.axf > test.lst
    convert_bin.exe
    $(CP) code.txt $(VHDL_DIR)

    pi2:
    $(AS_MIPS) -o boot.o boot.asm
    $(GCC_MIPS) pi.c
    - $(LD_MIPS) -Ttext 0x10000000 -eentry -Map test.map -s -N -o test.exe \
    + $(LD_MIPS) -Ttext 0x10000000 -eentry -Map test.map -s -N -o test.axf \ boot.o pi.o - @$(DUMP_MIPS) --disassemble test.exe > test.lst + @$(DUMP_MIPS) --disassemble test.axf > test.lst convert_bin.exe $(CP) code.txt $(VHDL_DIR) @@ -114,9 +114,9 @@ $(AS_MIPS) -o boot.o boot.asm $(GCC_MIPS) bootldr.c $(GCC_MIPS) no_os.c - $(LD_MIPS) -Ttext 0 -eentry -Map test.map -s -N -o test.exe \ + $(LD_MIPS) -Ttext 0 -eentry -Map test.map -s -N -o test.axf \ boot.o bootldr.o no_os.o - @$(DUMP_MIPS) --disassemble test.exe > test.lst + @$(DUMP_MIPS) --disassemble test.axf > test.lst convert_bin.exe $(CP) code.txt $(VHDL_DIR) @@ -124,9 +124,9 @@ $(AS_MIPS) -EL -o boot.o boot.asm $(GCC_MIPS) -EL bootldr.c $(GCC_MIPS) -EL no_os.c - $(LD_MIPS) -EL -Ttext 0 -eentry -Map test.map -s -N -o test.exe \ + $(LD_MIPS) -EL -Ttext 0 -eentry -Map test.map -s -N -o test.axf \ boot.o bootldr.o no_os.o - @$(DUMP_MIPS) --disassemble test.exe > test.lst + @$(DUMP_MIPS) --disassemble test.axf > test.lst convert_le.exe $(CP) code.txt $(VHDL_DIR)

     
    Copyright (c) 1999 OPENCORES.ORG. All rights reserved.