OpenCores
URL https://opencores.org/ocsvn/ion/ion/trunk

Subversion Repositories ion

[/] [ion/] [trunk/] [src/] [hello/] [makefile] - Diff between revs 24 and 34

Go to most recent revision | Show entire file | Details | Blame | View Log

Rev 24 Rev 34
Line 11... Line 11...
hello:
hello:
        $(AS_MIPS) -o boot.o $(SRC_DIR)/common/boot.s
        $(AS_MIPS) -o boot.o $(SRC_DIR)/common/boot.s
        $(GCC_MIPS) -o no_os.o $(SRC_DIR)/common/no_os.c
        $(GCC_MIPS) -o no_os.o $(SRC_DIR)/common/no_os.c
        $(GCC_MIPS) -o hello.o hello.c
        $(GCC_MIPS) -o hello.o hello.c
# NOTE: Startup code (boot.o) is linked in the link script;
# NOTE: Startup code (boot.o) is linked in the link script;
        $(LD_MIPS) $(LFLAGS) -Map hello.map -s -N -o hello.axf hello.o no_os.o
        $(LD_MIPS) $(LFLAGS_BARE) -Map hello.map -s -N -o hello.axf hello.o no_os.o
        -@$(DUMP_MIPS) -m mips --disassemble hello.axf > hello.lst
        -@$(DUMP_MIPS) -m mips --disassemble hello.axf > hello.lst
 
 
 
 
# Extract object code to be placed in code space (see link script)
# Extract object code to be placed in code space (see link script)
hello.code: hello
 
        $(COPY_MIPS) -I elf32-big -j.text -O binary hello.axf hello.code
        $(COPY_MIPS) -I elf32-big -j.text -O binary hello.axf hello.code
 
 
# Extract object code to be placed in data space (see link script)
# Extract object code to be placed in data space (see link script)
hello.data: hello
 
        $(COPY_MIPS) -I elf32-big -j.rodata -j.data -j.bss -O binary hello.axf hello.data
        $(COPY_MIPS) -I elf32-big -j.rodata -j.data -j.bss -O binary hello.axf hello.data
 
 
# Create VHDL file for simulation test bench
# Create VHDL file for simulation test bench
hello_sim: hello.code hello.data
hello_sim: hello
        $(TO_VHDL) $(VHDL_FLAGS) --code hello.code --data hello.data \
        $(TO_VHDL) --code hello.code --data hello.data \
 
                --code_size $(CODE_BRAM_SIZE) --data_size $(DATA_BRAM_SIZE) \
                -s $(SIM_LENGTH) -v $(SRC_DIR)/mips_tb1_template.vhdl \
                -s $(SIM_LENGTH) -v $(SRC_DIR)/mips_tb1_template.vhdl \
                -o $(TB_DIR)/mips_tb1.vhdl -e mips_tb1
                -o $(TB_DIR)/mips_tb1.vhdl -e mips_tb1
 
 
# Create VHDL file for hardware demo
# Create VHDL file for hardware demo
hello_demo: hello.code hello.data
hello_demo: hello
        $(TO_VHDL) $(VHDL_FLAGS) --code hello.code --data hello.data \
        $(TO_VHDL) --code hello.code --data hello.data \
                -v $(SRC_DIR)/mips_mpu_template.vhdl
                --code_size $(CODE_BRAM_SIZE) --data_size $(DATA_BRAM_SIZE) \
 
                -v $(SRC_DIR)/mips_mpu_template.vhdl \
                -o $(DEMO_DIR)/mips_mpu.vhdl -e mips_mpu
                -o $(DEMO_DIR)/mips_mpu.vhdl -e mips_mpu

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.