




版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
1、2009-2010第一学期北京工业大学实验学院EDA实验报告题 目 波形发生与嵌入式逻辑分析仪 专 业 电子信息工程 学 号 07521203 姓 名 马艳 成 绩 指导教师 2009 CREATEDATE yyyy年MM月dd日 * MERGEFORMAT 年 12 月 6 日一 实验目的学习内嵌式逻辑分析工具Signal TabII测试波形功能。达到检验设计效果和提高分析设计过程的能力。二 实验内容与要求利用内嵌式逻辑分析工具完成信号发生器设计及编译、综合、适配、仿真和硬件测试,能够产生正弦波,方波,三角波,锯齿波。三 实验平台(1)硬件:计算机、GX-SOC/SOPC-DEVLAB Cy
2、cloneII EP2C35F672C8核心扳(2)软件:Quartus II四 实验原理 嵌入式逻辑分析仪主要分为硬件部分和软件部分。硬件部分由待测设计(DUT),嵌入到FPGA中的ELA IP核、RAM存储单元以及JTAG接口组成;软件部分由用户设计软件和集成在其中的ELA在线调试软件组成。五 程序代码-clkgen.vhdLIBRARY IEEE;USE IEEE.STD_LOGIC_1164.ALL;use ieee.std_logic_unsigned.all;ENTITY clkgen IS PORT(clkin:IN STD_LOGIC ; clkout: OUT STD_LOG
3、IC);END;ARCHITECTURE even OF clkgen ISconstant N:Integer:=16; SIGNAL coun:integer range 0 to N; SIGNAL clk1:STD_LOGIC;BEGIN PROCESS(clkin) BEGIN IF(clkinEVENT AND clkin=1)THEN IF(coun=N)THEN coun=0; clk1=Not clk1; else coun=coun+1; END IF; END IF; END PROCESS; clkout=clk1; END even;-方波library ieee;
4、use ieee.std_logic_1164.all; use ieee.std_logic_arith.all; use ieee.std_logic_unsigned.all; entity fang2 is port( clk : in std_logic; fd1 : out std_logic_vector(7 downto 0); end; ARCHITECTURE fang OF fang2 IS SIGNAL q:integer range 0 to 1;BEGINPROCESS(clk) BEGIN IF(clkEVENT AND clk=1)THEN qfd1fd1nul
5、l; end case; end process; end architecture;-三角波library ieee;use ieee.std_logic_1164.all;use ieee.std_logic_arith.all;use ieee.std_logic_unsigned.all;entity sanj isport(clk: in std_logic; dd3 : out std_logic_vector(7 downto 0) );end;architecture one of sanj isbeginprocess(clk) variable num : std_logi
6、c_vector(7 downto 0);variable ff : std_logic;beginif (clkevent and clk=1) then if ff = 0 then if num=11111000then num:=11111111; ff:=1; else num:=num+8; end if; else if num=00000111 then num:=00000000; ff:=0; else num:=num-8; end if; end if; end if; dd3=num; end process;end;LIBRARY IEEE;USE IEEE.STD
7、_LOGIC_1164.ALL;entity jvchi2 is port(clk,up_down: in std_logic; dd2:out integer range 255 downto 0); end; architecture one of jvchi2 is signal d,temp:integer range 255 downto 0; begin process(clk) begin if(clkevent and clk=1) then if temp198 then temp=temp+2; else temp=0; end if; end if; end proces
8、s; process(temp,up_down) begin if up_down=0 then d=temp; else d=198-temp; end if; end process; dd2=d; end;六 引脚定义及代码代码:# Copyright (C) 1991-2008 Altera Corporation# Your use of Altera Corporations design tools, logic functions # and other software and tools, and its AMPP partner logic # functions, an
9、d any output files from any of the foregoing # (including device programming or simulation files), and any # associated documentation or information are expressly subject # to the terms and conditions of the Altera Program License # Subscription Agreement, Altera MegaCore Function License # Agreemen
10、t, or other applicable license agreement, including, # without limitation, that your use is for the sole purpose of # programming logic devices manufactured by Altera and sold by # Altera or its authorized distributors. Please refer to the # applicable agreement for further details.# Quartus II: Gen
11、erate Tcl File for Project# File: wave.tcl# Generated on: Thu Nov 12 12:00:52 2009# Load Quartus II Tcl Project packagepackage require :quartus:projectset need_to_close_project 0set make_assignments 1# Check that the right project is openif is_project_open if string compare $quartus(project) wave pu
12、ts Project wave is not openset make_assignments 0 else # Only open if not already openif project_exists wave project_open -revision wave wave else project_new -revision wave waveset need_to_close_project 1# Make assignmentsif $make_assignments set_global_assignment -name FAMILY Cyclone IIset_global_
13、assignment -name DEVICE EP2C35F672C8set_global_assignment -name TOP_LEVEL_ENTITY wavetopset_global_assignment -name ORIGINAL_QUARTUS_VERSION 8.0set_global_assignment -name PROJECT_CREATION_TIME_DATE 11:58:59 NOVEMBER 12, 2009set_global_assignment -name LAST_QUARTUS_VERSION 8.0set_global_assignment -
14、name USE_GENERATED_PHYSICAL_CONSTRAINTS OFF -section_id eda_palaceset_global_assignment -name DEVICE_FILTER_PACKAGE FBGAset_global_assignment -name DEVICE_FILTER_PIN_COUNT 672set_global_assignment -name DEVICE_FILTER_SPEED_GRADE 8set_global_assignment -name MIN_CORE_JUNCTION_TEMP 0set_global_assignm
15、ent -name MAX_CORE_JUNCTION_TEMP 85set_global_assignment -name PARTITION_NETLIST_TYPE SOURCE -section_id Topset_global_assignment -name PARTITION_COLOR 14622752 -section_id Topset_global_assignment -name LL_ROOT_REGION ON -section_id Root Regionset_global_assignment -name LL_MEMBER_STATE LOCKED -sec
16、tion_id Root Regionset_global_assignment -name BDF_FILE wavetop.bdfset_instance_assignment -name PARTITION_HIERARCHY root_partition -to | -section_id Top# Commit assignmentsexport_assignmentsset_location_assignment PIN_B13 -to clkset_location_assignment PIN_F6 -to switch0set_location_assignment PIN_
17、A21 -to switch1set_location_assignment PIN_B21 -to switch2set_location_assignment PIN_J25 -to dac_abset_location_assignment PIN_J26 -to dac_csset_location_assignment PIN_U26 -to dac_wrset_location_assignment PIN_G21 -to dout0set_location_assignment PIN_E23 -to dout1set_location_assignment PIN_E24 -to dout2set_location_assignment PIN_B24 -to dout3set_location_assi
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 语文学科的综合能力评估试题及答案
- 达能酸奶推广方案
- 2025年常用有色金属矿合作协议书
- 2025年电子浆料金浆、银浆、银铂浆合作协议书
- 梳理2024年CPMM考试前的知识框架试题及答案
- 高职单招综合素质复习试题
- 退休教师座谈会 发言稿
- 习题集:2024证券从业资格考试试题及答案
- 2025年补充协议模板标准版
- 2025年度离婚协议中子女监护权变更补充协议
- 龙门吊基础施工方案 (定稿)
- 2024年芜湖职业技术学院单招职业适应性测试题库带答案
- 手术室患者身份识别制度
- 沪教版五年级下册英语(三年级起点)课文翻译
- 三级医院评审标准(2022 年版)广东省实施细则管理一
- 品管圈活动对降低阴道分娩后尿潴留发生率的效果
- 《静脉采血》课件
- 栏杆计算书完整版本
- 单招物理基础题及答案
- 2023年中考语文二轮复习:书法鉴赏 真题练习题汇编(含答案解析)
- 大数据的商业模式创新
评论
0/150
提交评论