-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Lan Hekary
authored and
Lan Hekary
committed
Jan 31, 2017
0 parents
commit c9d906b
Showing
28 changed files
with
4,584 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
db/ | ||
incremental_db/ | ||
simulation/ | ||
timing/ | ||
.sopc_builder/ | ||
*.summary | ||
*.rpt | ||
*.sof | ||
*.pof | ||
*.done | ||
*.smsg | ||
*.bak | ||
*.qws |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,198 @@ | ||
/* | ||
WARNING: Do NOT edit the input and output ports in this file in a text | ||
editor if you plan to continue editing the block that represents it in | ||
the Block Editor! File corruption is VERY likely to occur. | ||
*/ | ||
|
||
/* | ||
Copyright (C) 1991-2008 Altera Corporation | ||
Your use of Altera Corporation's design tools, logic functions | ||
and other software and tools, and its AMPP partner logic | ||
functions, and 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 | ||
Agreement, 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. | ||
*/ | ||
|
||
HEADER | ||
{ | ||
VERSION = 1; | ||
TIME_UNIT = ns; | ||
PRINT_OPTIONS = "Print_options_version 6\ | ||
range_start 0ps\ | ||
range_end 1.0us\ | ||
width 1\ | ||
names_percentage 25\ | ||
comments 1\ | ||
grid_lines 1\ | ||
time_bars 1\ | ||
name_every_page 0\ | ||
expand_groups 0\ | ||
print_all 1"; | ||
DATA_OFFSET = 0.0; | ||
DATA_DURATION = 1000.0; | ||
SIMULATION_TIME = 1000.0; | ||
GRID_PHASE = 0.0; | ||
GRID_PERIOD = 10.0; | ||
GRID_DUTY_CYCLE = 50; | ||
} | ||
|
||
SIGNAL("clk") | ||
{ | ||
VALUE_TYPE = NINE_LEVEL_BIT; | ||
SIGNAL_TYPE = SINGLE_BIT; | ||
WIDTH = 1; | ||
LSB_INDEX = -1; | ||
DIRECTION = INPUT; | ||
PARENT = ""; | ||
} | ||
|
||
SIGNAL("LED1") | ||
{ | ||
VALUE_TYPE = NINE_LEVEL_BIT; | ||
SIGNAL_TYPE = SINGLE_BIT; | ||
WIDTH = 1; | ||
LSB_INDEX = -1; | ||
DIRECTION = OUTPUT; | ||
PARENT = ""; | ||
} | ||
|
||
SIGNAL("LED2") | ||
{ | ||
VALUE_TYPE = NINE_LEVEL_BIT; | ||
SIGNAL_TYPE = SINGLE_BIT; | ||
WIDTH = 1; | ||
LSB_INDEX = -1; | ||
DIRECTION = OUTPUT; | ||
PARENT = ""; | ||
} | ||
|
||
SIGNAL("LED3") | ||
{ | ||
VALUE_TYPE = NINE_LEVEL_BIT; | ||
SIGNAL_TYPE = SINGLE_BIT; | ||
WIDTH = 1; | ||
LSB_INDEX = -1; | ||
DIRECTION = OUTPUT; | ||
PARENT = ""; | ||
} | ||
|
||
SIGNAL("enable") | ||
{ | ||
VALUE_TYPE = NINE_LEVEL_BIT; | ||
SIGNAL_TYPE = SINGLE_BIT; | ||
WIDTH = 1; | ||
LSB_INDEX = -1; | ||
DIRECTION = INPUT; | ||
PARENT = ""; | ||
} | ||
|
||
TRANSITION_LIST("clk") | ||
{ | ||
NODE | ||
{ | ||
REPEAT = 1; | ||
NODE | ||
{ | ||
REPEAT = 1000; | ||
LEVEL 0 FOR 0.5; | ||
LEVEL 1 FOR 0.5; | ||
} | ||
} | ||
} | ||
|
||
TRANSITION_LIST("LED1") | ||
{ | ||
NODE | ||
{ | ||
REPEAT = 1; | ||
LEVEL X FOR 1000.0; | ||
} | ||
} | ||
|
||
TRANSITION_LIST("LED2") | ||
{ | ||
NODE | ||
{ | ||
REPEAT = 1; | ||
LEVEL X FOR 1000.0; | ||
} | ||
} | ||
|
||
TRANSITION_LIST("LED3") | ||
{ | ||
NODE | ||
{ | ||
REPEAT = 1; | ||
LEVEL X FOR 1000.0; | ||
} | ||
} | ||
|
||
TRANSITION_LIST("enable") | ||
{ | ||
NODE | ||
{ | ||
REPEAT = 1; | ||
LEVEL 0 FOR 4.746; | ||
LEVEL 1 FOR 2.69; | ||
LEVEL 0 FOR 992.564; | ||
} | ||
} | ||
|
||
DISPLAY_LINE | ||
{ | ||
CHANNEL = "clk"; | ||
EXPAND_STATUS = COLLAPSED; | ||
RADIX = ASCII; | ||
TREE_INDEX = 0; | ||
TREE_LEVEL = 0; | ||
} | ||
|
||
DISPLAY_LINE | ||
{ | ||
CHANNEL = "LED1"; | ||
EXPAND_STATUS = COLLAPSED; | ||
RADIX = ASCII; | ||
TREE_INDEX = 1; | ||
TREE_LEVEL = 0; | ||
} | ||
|
||
DISPLAY_LINE | ||
{ | ||
CHANNEL = "LED2"; | ||
EXPAND_STATUS = COLLAPSED; | ||
RADIX = ASCII; | ||
TREE_INDEX = 2; | ||
TREE_LEVEL = 0; | ||
} | ||
|
||
DISPLAY_LINE | ||
{ | ||
CHANNEL = "LED3"; | ||
EXPAND_STATUS = COLLAPSED; | ||
RADIX = ASCII; | ||
TREE_INDEX = 3; | ||
TREE_LEVEL = 0; | ||
} | ||
|
||
DISPLAY_LINE | ||
{ | ||
CHANNEL = "enable"; | ||
EXPAND_STATUS = COLLAPSED; | ||
RADIX = ASCII; | ||
TREE_INDEX = 4; | ||
TREE_LEVEL = 0; | ||
} | ||
|
||
TIME_BAR | ||
{ | ||
TIME = 0; | ||
MASTER = TRUE; | ||
} | ||
; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
/* Quartus II Version 8.1 Build 163 10/28/2008 SJ Web Edition */ | ||
JedecChain; | ||
FileRevision(JESD32A); | ||
DefaultMfr(6E); | ||
|
||
P ActionCode(Cfg) | ||
Device PartName(EP2C5T144) Path("D:/Documents/FPGA/ARM-SC/") File("ARM.sof") MfrSpec(OpMask(1)); | ||
|
||
ChainEnd; | ||
|
||
AlteraBegin; | ||
ChainType(JTAG); | ||
AlteraEnd; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
|
||
<pin_planner> | ||
<pin_info> | ||
</pin_info> | ||
<buses> | ||
</buses> | ||
<group_file_association> | ||
</group_file_association> | ||
<pin_planner_file_specifies> | ||
</pin_planner_file_specifies> | ||
</pin_planner> |
Oops, something went wrong.