URL
https://opencores.org/ocsvn/ion/ion/trunk
Subversion Repositories ion
[/] [ion/] [trunk/] [src/] [opcodes/] [makefile] - Rev 229
Compare with Previous | Blame | View Log
# Get common makefile stuff (toolchain & system config)include ../common/makefile# We'll run the simulation for long enough for the program to finishSIM_LENGTH = 140000# FPGA Block RAM parametersBRAM_START = 0xbfc00000CODE_BRAM_SIZE = 4096# External RAM parameters (size in words)XRAM_SIZE = 1024XRAM_START = 0x00000000LFLAGS = -Ttext $(BRAM_START) -Tdata $(XRAM_START) -eentry -I elf32-big#-- Targets & rules ------------------------------------------------------------opcodes:$(AS) -o opcode_emu.o $(SRC_DIR)/common/opcode_emu.s$(AS) -defsym XRAM_BASE=$(XRAM_START) -mips32r2 -o opcodes.o opcodes.s$(LD) $(LFLAGS) -Map opcodes.map -s -N -o opcodes.axf opcodes.o opcode_emu.o-@$(DUMP) -I elf32-big --disassemble opcodes.axf > opcodes.lst# Dump only text segment, no .rodata on this program# $(COPY) -I elf32-big -j .text -O binary opcodes.axf opcodes.bin# Dump data segment to file; will be empty but the TB2 template needs it# $(COPY) -I elf32-big -j .data -O binary opcodes.axf opcodes.data$(COPY) -I elf32-big -O binary opcodes.axf opcodes.bin$(COPY) -I elf32-big -j.data -j.bss -O binary opcodes.axf opcodes.data#-- Create VHDL package with data and parameters for simulationsim: opcodes$(VHDL_OBJ_PKG) --project="Opcode tester" \--package sim_params_pkg \--bin opcodes.bin --name obj_code --bram_size $(CODE_BRAM_SIZE) \--bin opcodes.data --name sram_init --xram_size $(XRAM_SIZE) \--name prom_init --flash_size 0 \--output $(TB_DIR)/sim_params_pkg.vhdl \-s $(SIM_LENGTH) --log_trigger=0xbfc00000 \#-- And now the usual housekeeping stuff ---------------------------------------.PHONY: cleanclean:-$(RM) *.o *.obj *.map *.lst *.hex *.exe *.axf *.code *.data *.bin
