亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? makefile

?? 很多儀器都輸出同步時鐘
??
字號:
# file: Makefile
#
# Example Makefile for a
# typical Nios program:
#
#   peripheral_test.c
#
# ex:set noexpandtab:
#
# +---------------------------
# | How To Use This Makefile
# |
# | 1. Make a new directory with
# |    your project's .c and .h
# |    (and maybe .s) files
# |
# | 2. Copy this Makefile to it,
# |    and change the following
# |    variables as needed:
# |      PROGRAM_NAME -- base name for your program
# |      OBJECTS      -- list of .o files, which implies
# |                      the .c files and .s source files
# |      CINCLUDES    -- all your .h files
# |      AINCLUDES    -- all your .s include files
# |
# | 3. Type "make all" to build the project,
# |    or "make run" to make it and nios-run it.
# |


# +--------------------------
# | Project Files
# +--------------------------

# |
# | Program name -- the base for all
# | the output files including .srec and .out.
# |

PROGRAM_NAME = peripheral_test

# |
# | Assembly Include Files
# |
# | In this makefile, every C (.c) file
# | depends on every header file (.h)
# | in the CINCLUDES section, and every
# | assembly file (.s) depends on
# | each and every assembly-header (also .s)
# | in the AINCLUDES section


AINCLUDES =  \
	$(SDK_ROOT)/inc/excalibur.s \
	$(SDK_ROOT)/inc/nios_macros.s

CINCLUDES =  \
	$(SDK_ROOT)/inc/excalibur.h

# |
# | Object files
# |
# | The rules below will find the .c or .s files needed
# | to make each of these .o object files.
# |
# | This list will all go to the linker to make the
# | final binary.
# |
# | (This makefile follows the unusual convention
# | of appending .o after the original file name,
# | rather than replacing the file-type extension.
# | This makes it a)easier to identify a file's
# | history from its name, and b)easier to set
# | up implicit rules to generate them.
# |

OBJECTS =  \
	$(OBJ)/peripheral_test.c.o \
	$(OBJ)/peripheral_test_memory.c.o \
	$(OBJ)/peripheral_test_memory_asm.s.o \
	$(OBJ)/peripheral_test_timer.c.o \
	$(OBJ)/peripheral_test_uart.c.o

# +----------------------
# | Anchor point:
# |  the SOPC Builder sdk directory
# |  generated for this project
# |
# | This example makefile happens to
# | be located at
# |
# |    <your quartus project><your nios cpu>_sdk/src/makefile_example
# |
# | so the sdk root is at ../..

SDK_ROOT = ../..
# 
#
#
# +--------------------------------
# | First, some traditional defines
# | for our particular tool chain
# |

GNU_TOOLS_PREFIX = nios-elf
AS = $(GNU_TOOLS_PREFIX)-as
CC = $(GNU_TOOLS_PREFIX)-gcc
AR = $(GNU_TOOLS_PREFIX)-ar
LD = $(GNU_TOOLS_PREFIX)-ld
OC = $(GNU_TOOLS_PREFIX)-objcopy
NM = $(GNU_TOOLS_PREFIX)-nm
OD = $(GNU_TOOLS_PREFIX)-objdump

NR = nios-run

# | A special echo that prints prettily

E = echo \\\# `date +%Y.%m.%d.%H:%M:%S` ---

# |
# | To keep things tidy, we stash all
# | object (.o) files into a directory
# | named "obj"
# |

OBJ = ./obj

# |
# | And the source directory? Is right here.
# |

SRC = .

# |
# | It is a Nios 32. Change it to 16 for Nios 16.
# |

M = 32

# +-----------------------------------
# | Include paths and such
# | If you have more directories of .h files,
# | add them here.
# |
# | We put in ../inc, ../../inc, and so on so
# | that it will look "up and over" to the sopc_builder
# | generated files, or other nearby inc dirs.
# |
# | Note that it uses "-I <dir>" format, which
# | is legal for both as and gcc.
# |

INCLUDE_PATHS = \
		-I $(SDK_ROOT)/inc \
		-I ./inc \
		-I ../inc \
		-I ../../inc \
		-I ../../../inc \

# +------------------------------------
# | Switches for the compiler, the assembler,
# | and the linker
# |

ASFlags = \
		$(INCLUDE_PATHS) \
		--defsym __nios$(M)__=1 \
		-m$(M)

CCFlags = \
		$(INCLUDE_PATHS) \
		-W -g -c -O2 \
		-mdcache \
		-mno-zero-extend \
		-m$(M)



# +----------------------------------------
# | Rules
# |
# | These implicit rules treat all your .s
# | and all your .c files the same.
# |
# | "default" comes first so that if you just
# | type "make" it is the default target.
# |

default : nios16_note srec
	@$(E) .
	@$(E) . Built $(PROGRAM_NAME).srec
	@$(E) . try "make help" for more information
	@$(E) .

nios16_note :
	@$(E) "(Note: to make for Nios 16, try \"make clean all M=16\")"

$(OBJ)/%.s.o : $(SRC)/%.s $(AINCLUDES)
	@$(E) Assembling $<
	@$(AS) $(ASFlags) $< -o $@

$(OBJ)/%.c.o : $(SRC)/%.c $(CINCLUDES)
	@$(E) Compiling $<
	@$(CC) $(CCFlags) $< -o $@

$(OBJ) :
	@$(E) Making $@/ directory
	@mkdir $@

clean : $(OBJ)
	@$(E) Removing objects
	@rm -rf $(OBJ)/*

# +-------------------------------------
# | Linking
# |
# | This is the most involved command line.
# | It was taken from the output of "nios-build"
# | and splayed out into an easier-to-read form.
# |
# | It references a linker script out in the sopc_builder
# | directory, and also makes sure that the first thing
# | in the file is a branch to "_start". (Usually
# | the routine named _start does a bunch of useful
# | initialization before your main() routine is called.)
# |
# | Note the use of GCC_VER -- this is because some of
# | the libraries are stashed in a version-named directory.
# |
# | Explanation of switches to the linker:
# |
# |   -e _start -u _start
# |       the entry point. _start() does the setup
# |       for Nios and then calls main().
# |
# |   -g
# |       include debug info in .out file. Does NOT
# |       increase the size of your S-Record.
# |
# |   -T (path to ld script)
# |       A "linker script" which knows about your memory
# |       map, by using symbols like nasys_program_mem from
# |       excalibur.s.
# |
# |   (path to nios_jumptostart.s.o)
# |       A "program prefix" that we at the front of
# |       every Nios program. It contains a jump to
# |       _start, and the ascii signature "Nios".
# |
# |   --start-group -l nios32 -l c -l m -l gcc --end-group
# |       The linker treats this a set of libraries
# |       to scan repeatedly until no new references are
# |       resolved. (The libraries sometimes refer to each
# |       other, so multiple passes are needed.) Each
# |       -l option is taken as lib(something).a, so the
# |       above line really looks for libnios32.1, libc.a,
# |       libm.a, and libgcc.a.
# |
# |   -L(various paths)
# |       Places the linker might look for libraries
# |

GCC_VER = $(shell nios-elf-gcc --version)
LFLAGS = \
		-e _start \
		-u _start \
		-g \
		-T $(sopc_builder)/bin/excalibur.ld \
		$(SDK_ROOT)/lib/obj$(M)/nios_jumptostart.s.o \
		--start-group \
			-l nios$(M) \
			-l c \
			-l m \
			-l gcc \
		--end-group \
		-L$(sopc_kit_nios)/bin/nios-gnupro/nios-elf/lib/m$(M) \
		-L$(sopc_kit_nios)/bin/nios-gnupro/lib/gcc-lib/nios-elf/$(GCC_VER)/m$(M) \
		-L$(sopc_builder)/bin/nios-gnupro/nios-elf/lib/m$(M) \
		-L$(sopc_builder)/bin/nios-gnupro/lib/gcc-lib/nios-elf/$(GCC_VER)/m$(M) \
		-L$(SDK_ROOT)/lib \
		-L. \
		-L../lib \
		-L../../lib \
		-L../../../lib \

# |
# | Note about -L's above:
# |
# | we look in the quartus-3.0-and-later place, sopc_kit_nios,
# | and also in the pre-3.0 place, sopc_builder, for the compiler
# | libraries
# |

# |
# | Rule for making .out file from
# | the objects. The OBJECTS variable
# | must come before the LFLAGS, because
# | the LFLAGS has the libraries. The linker
# | needs to know which library routines you've
# | referenced from your code before scanning
# | them and deciding which parts to use.
# |

$(OBJ)/$(PROGRAM_NAME).out : $(OBJ) $(OBJECTS)
	@$(E) Linking $@
	@$(LD) $(OBJECTS) $(LFLAGS) -o $(OBJ)/$(PROGRAM_NAME).out 

# |
# | S-Record
# |
# | We like Nios programs to be in an S-Record
# | for use by nios-run or SOPC Builder memory
# | contents
# |
# | The S-Record is the only output file that
# | we dont stash tidily into the obj folder
# |

$(PROGRAM_NAME).srec : $(OBJ)/$(PROGRAM_NAME).out
	@$(E) Converting $(PROGRAM_NAME) to S-Record
	@$(OC) -O srec $(OBJ)/$(PROGRAM_NAME).out $(PROGRAM_NAME).srec 


# |
# | The following several targets are unique
# | to generating certain flash-config files
# | for the Apex 20k Nios development board.
# |
# | These targets may be omitted if you adapt
# | this Makefile for your own projects.
# |

$(PROGRAM_NAME).flash : $(PROGRAM_NAME).srec
	$(E) Converting $(PROGRAM_NAME).srec to $(PROGRAM_NAME).flash ;
	@srec2flash $(PROGRAM_NAME).srec

DESIGN_NAME = standard_32

$(DESIGN_NAME).hexout.flash : ../../../$(DESIGN_NAME).hexout
	@$(E) Converting $(DESIGN_NAME).hexout to $(DESIGN_NAME).hexout.flash ;
	@cd ../../../ ; hexout2flash $(DESIGN_NAME).hexout -b 0x1c0000 -s 0x3f000
	@mv ../../../$(DESIGN_NAME).hexout.flash .

$(DESIGN_NAME).germs : $(DESIGN_NAME).hexout.flash $(PROGRAM_NAME).flash
	@$(E) "Assembling hardware and software images into $(DESIGN_NAME).germs"
	@cat $(DESIGN_NAME).hexout.flash $(PROGRAM_NAME).flash > $(DESIGN_NAME).germs

# |
# | Handy auxilliary files
# |

$(OBJ)/$(PROGRAM_NAME).nm : $(OBJ)/$(PROGRAM_NAME).out
	@$(E) Making $(PROGRAM_NAME).nm
	@$(NM) $(OBJ)/$(PROGRAM_NAME).out | sort > $(OBJ)/$(PROGRAM_NAME).nm

$(OBJ)/$(PROGRAM_NAME).objdump : $(OBJ)/$(PROGRAM_NAME).out
	@$(E) Making $(PROGRAM_NAME).objdump
	@$(OD) $(OBJ)/$(PROGRAM_NAME).out -d --source > $(OBJ)/$(PROGRAM_NAME).objdump

# +-------------------------------------
# | Shortcut Targets
# |

srec : $(PROGRAM_NAME).srec

out : $(OBJ)/$(PROGRAM_NAME).out

flash : $(DESIGN_NAME).germs

run : $(PROGRAM_NAME).srec
	@$(E) Running $(PROGRAM_NAME)
	@$(NR) $(PROGRAM_NAME).srec
	@$(E) Done running $(PROGRAM_NAME)

aux : $(OBJ)/$(PROGRAM_NAME).nm $(OBJ)/$(PROGRAM_NAME).objdump

all : nios16_note srec aux

help :
	@echo 
	@echo Program name: $(PROGRAM_NAME)
	@echo 
	@echo Available makefile targets:
	@echo
	@echo "  make clean -- erase intermediate files"
	@echo "  make srec  -- compile, link, and convert to S-Record"
	@echo "  make run   -- make the S-Record, and then nios-run, too"
	@echo 
	@echo "  make out   -- only make the .out file"
	@echo "  make aux   -- generate .nm and .objdump files"
	@echo

# end of file

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
av一区二区不卡| 成人动漫一区二区三区| 国产精选一区二区三区| 91久久精品午夜一区二区| 欧美大白屁股肥臀xxxxxx| 亚洲一区二区欧美日韩 | 精品国产免费一区二区三区香蕉| 欧美国产日韩a欧美在线观看| 午夜精品久久久久久久99樱桃| 成人免费视频caoporn| 日韩欧美在线不卡| 亚洲国产综合色| 91免费在线看| 国产精品久久看| 国产在线播精品第三| 欧美精品日韩综合在线| 亚洲乱码国产乱码精品精的特点| 国产成a人亚洲精| 久久亚洲春色中文字幕久久久| 日产精品久久久久久久性色| 在线观看亚洲专区| 亚洲乱码国产乱码精品精小说 | 国产精品的网站| 国产九色sp调教91| 精品免费视频一区二区| 免费观看在线综合色| 欧美片网站yy| 日日欢夜夜爽一区| 欧美日韩免费一区二区三区| 欧美色爱综合网| |精品福利一区二区三区| 成人激情黄色小说| 国产精品国产三级国产| 成人一区二区三区在线观看| 国产拍揄自揄精品视频麻豆| 国产成人免费视频网站高清观看视频 | 2020国产成人综合网| 蜜桃精品视频在线| 日韩情涩欧美日韩视频| 麻豆freexxxx性91精品| 精品sm捆绑视频| 国产精品1区2区3区在线观看| 国产午夜精品在线观看| 成人自拍视频在线观看| 亚洲国产精华液网站w| 99精品视频中文字幕| 一区二区三区免费看视频| 欧美性色黄大片手机版| 日本一道高清亚洲日美韩| 日韩免费性生活视频播放| 国产精品亚洲成人| 亚洲视频小说图片| 欧美男人的天堂一二区| 久久精品噜噜噜成人av农村| 国产调教视频一区| 91亚洲精品久久久蜜桃| 亚洲国产一区二区三区青草影视| 9191久久久久久久久久久| 国内精品久久久久影院薰衣草| 国产精品乱人伦中文| 91国产视频在线观看| 美女视频一区二区| 成人免费在线视频| 欧美一区二区三区在线观看视频| 国产精品综合二区| 亚洲自拍偷拍欧美| 久久久不卡影院| 欧美亚洲动漫制服丝袜| 国内精品写真在线观看| 亚洲欧美日韩国产一区二区三区| 欧美一区二区三区成人| 成人精品一区二区三区中文字幕 | 欧美激情一区在线| 欧美日韩国产一级片| 国产成人免费网站| 婷婷国产在线综合| 国产精品视频九色porn| 欧美一区二区播放| 91视频国产观看| 国产在线视频精品一区| 亚洲一区二区三区视频在线| 久久久精品中文字幕麻豆发布| 在线观看视频一区二区 | 久久九九全国免费| 欧美视频在线观看一区二区| 国产成人免费av在线| 蜜臀精品一区二区三区在线观看 | 国产精品自在欧美一区| 亚洲成在线观看| 日韩一区在线播放| 国产日韩精品一区| 日韩欧美国产一区在线观看| 91成人免费网站| eeuss鲁片一区二区三区在线看| 麻豆视频一区二区| 亚洲高清视频在线| 亚洲黄色尤物视频| 中文字幕一区二区三区精华液| 精品国偷自产国产一区| 欧美精品三级在线观看| 欧美在线一区二区三区| 91美女片黄在线观看| 成人aa视频在线观看| 国产午夜精品久久久久久免费视 | 久久精品视频免费观看| 欧美日韩成人高清| 色94色欧美sute亚洲线路一ni | 国产香蕉久久精品综合网| 日韩一区二区三区精品视频| 91精品福利视频| 91蝌蚪porny九色| 99视频热这里只有精品免费| 国产成人免费视频| 成人福利在线看| 99久久99久久久精品齐齐| av一区二区不卡| 91蜜桃传媒精品久久久一区二区| 成人性生交大合| k8久久久一区二区三区 | 黄色日韩网站视频| 黑人精品欧美一区二区蜜桃| 麻豆国产一区二区| 国内国产精品久久| 国产精品资源站在线| 国产一区 二区 三区一级| 国产成人亚洲精品青草天美| 国产jizzjizz一区二区| 成人av在线网| 在线日韩国产精品| 3d成人动漫网站| 久久天天做天天爱综合色| 久久久久久99精品| 国产精品久久久久7777按摩| 亚洲黄色片在线观看| 日韩精品乱码免费| 韩国av一区二区三区在线观看| 国产精品一区二区三区乱码| jlzzjlzz欧美大全| 欧美日韩精品一区二区三区蜜桃| 国产欧美一区视频| 综合久久国产九一剧情麻豆| 国产精品护士白丝一区av| 自拍视频在线观看一区二区| 亚洲精品成人天堂一二三| 日韩精品一级二级| 国产精品1区2区| 在线观看区一区二| 日韩欧美激情一区| 国产精品水嫩水嫩| 亚洲一区二区欧美日韩| 久久99国产精品免费| 97久久人人超碰| 日韩三级高清在线| 最好看的中文字幕久久| 六月丁香婷婷色狠狠久久| 成人免费视频视频在线观看免费| 精品视频免费看| 久久久久久亚洲综合影院红桃| **性色生活片久久毛片| 奇米精品一区二区三区四区| 国产91精品一区二区麻豆网站 | 色琪琪一区二区三区亚洲区| 欧美一区二区在线看| 中文字幕中文字幕在线一区| 日韩av一级电影| av在线不卡免费看| 欧美成人国产一区二区| 亚洲黄色av一区| 成人永久aaa| 欧美成va人片在线观看| 亚洲综合色成人| 成人午夜免费视频| 亚洲精品一区二区三区香蕉| 亚洲成人在线免费| eeuss影院一区二区三区| 欧美精品一区二区三区四区| 天天免费综合色| 91黄色激情网站| 国产精品久久久久久亚洲毛片| 久久99精品久久久久婷婷| 欧美日韩久久久| 亚洲最色的网站| 91麻豆国产在线观看| 国产精品免费久久| 国产在线视频一区二区| 日韩色在线观看| 免费成人av在线播放| 欧美精品久久久久久久多人混战| 亚洲美女一区二区三区| 成人免费不卡视频| 欧美精品自拍偷拍| 97精品超碰一区二区三区| 精品人伦一区二区色婷婷| 日韩精品福利网| 在线中文字幕不卡| 亚洲精品伦理在线| 99国产精品久久久| 亚洲激情图片一区| 欧美在线|欧美| 亚洲成av人影院|