Compare commits
10 Commits
a87a3896cc
...
v2.0.0
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
e4359119aa | ||
|
|
ad76e0b356 | ||
|
|
41f88a7072 | ||
|
|
67fb969151 | ||
|
|
23eb5ae24c | ||
|
|
d2383f0bd5 | ||
|
|
09fcd1d70b | ||
|
|
dd7d083112 | ||
|
|
93c5b504fb | ||
|
|
6af72b448a |
2
.gitignore
vendored
2
.gitignore
vendored
@@ -29,3 +29,5 @@
|
|||||||
# Windows specific
|
# Windows specific
|
||||||
Thumbs.db
|
Thumbs.db
|
||||||
Desktop.ini
|
Desktop.ini
|
||||||
|
|
||||||
|
project_7/hx.exe
|
||||||
|
|||||||
117
project_6/proj.mermaid
Normal file
117
project_6/proj.mermaid
Normal file
@@ -0,0 +1,117 @@
|
|||||||
|
flowchart TD
|
||||||
|
|
||||||
|
%% ── External ports ──────────────────────────────────────────
|
||||||
|
CLK([CLK])
|
||||||
|
RST([RST])
|
||||||
|
START([START])
|
||||||
|
SEGMENTS([SEGMENTS\nout])
|
||||||
|
ANODS([ANODS\nout])
|
||||||
|
|
||||||
|
%% ════════════════════════════════════════════════════════════
|
||||||
|
%% FILE: divider.vhd
|
||||||
|
%% ════════════════════════════════════════════════════════════
|
||||||
|
subgraph FILE_DIV["📄 divider.vhd — entity: divider"]
|
||||||
|
direction TB
|
||||||
|
DIV["U_DIV\ndivider\n─────────────\nIN: CLK, RST\nOUT: CLK_1_Hz"]
|
||||||
|
end
|
||||||
|
|
||||||
|
%% ════════════════════════════════════════════════════════════
|
||||||
|
%% FILE: divider_400Hz.vhd
|
||||||
|
%% ════════════════════════════════════════════════════════════
|
||||||
|
subgraph FILE_DIV400["📄 divider_400Hz.vhd — entity: divider_400Hz"]
|
||||||
|
direction TB
|
||||||
|
DIV400["U_DIV_400Hz\ndivider_400Hz\n─────────────\nIN: CLK, RST\nOUT: CLK_400_Hz"]
|
||||||
|
end
|
||||||
|
|
||||||
|
%% ════════════════════════════════════════════════════════════
|
||||||
|
%% FILE: counter.vhd
|
||||||
|
%% ════════════════════════════════════════════════════════════
|
||||||
|
subgraph FILE_CNT["📄 counter.vhd — entity: counter (reused 4x)"]
|
||||||
|
direction TB
|
||||||
|
CNT_U["U_CNT_TOP\ncounter - Units\n─────────────\nIN: CLK, RST, CE\nOUT: COUNT_OUT, TC"]
|
||||||
|
CNT_T["U_CNT_BOTTOM\ncounter - Tens\n─────────────\nIN: CLK, RST, CE\nOUT: COUNT_OUT, TC"]
|
||||||
|
CNT_H["U_CNT_3\ncounter - Hundreds\n─────────────\nIN: CLK, RST, CE\nOUT: COUNT_OUT, TC"]
|
||||||
|
CNT_K["U_CNT_4\ncounter - Thousands\n─────────────\nIN: CLK, RST, CE\nOUT: COUNT_OUT, TC=open"]
|
||||||
|
end
|
||||||
|
|
||||||
|
%% ════════════════════════════════════════════════════════════
|
||||||
|
%% FILE: counter_2bit.vhd
|
||||||
|
%% ════════════════════════════════════════════════════════════
|
||||||
|
subgraph FILE_CNT2["📄 counter_2bit.vhd — entity: counter_2bit"]
|
||||||
|
direction TB
|
||||||
|
CNT2["U_CNT_2BIT\ncounter_2bit\n─────────────\nIN: CLK=clk_400Hz, RST\nOUT: COUNT_OUT 2-bit"]
|
||||||
|
end
|
||||||
|
|
||||||
|
%% ════════════════════════════════════════════════════════════
|
||||||
|
%% FILE: decoder_bottom.vhd
|
||||||
|
%% ════════════════════════════════════════════════════════════
|
||||||
|
subgraph FILE_DEC_AN["📄 decoder_bottom.vhd — entity: decoder_an"]
|
||||||
|
direction TB
|
||||||
|
DEC_AN["U_DEC_ANODES\ndecoder_an\n─────────────\nIN: SEL 2-bit\nOUT: ANODES 4-bit"]
|
||||||
|
end
|
||||||
|
|
||||||
|
%% ════════════════════════════════════════════════════════════
|
||||||
|
%% FILE: mux.vhd
|
||||||
|
%% ════════════════════════════════════════════════════════════
|
||||||
|
subgraph FILE_MUX["📄 mux.vhd — entity: mux"]
|
||||||
|
direction TB
|
||||||
|
MUX["U_MUX\nmux 4x4-bit\n─────────────\nIN: I0,I1,I2,I3, S 2-bit\nOUT: Y 4-bit"]
|
||||||
|
end
|
||||||
|
|
||||||
|
%% ════════════════════════════════════════════════════════════
|
||||||
|
%% FILE: dec2.vhd
|
||||||
|
%% ════════════════════════════════════════════════════════════
|
||||||
|
subgraph FILE_DEC_SEG["📄 dec2.vhd — entity: dec_seg"]
|
||||||
|
direction TB
|
||||||
|
DEC_SEG["U_DEC_SEG\ndec_seg\n─────────────\nIN: BCD 4-bit\nOUT: SEG 8-bit"]
|
||||||
|
end
|
||||||
|
|
||||||
|
%% ════════════════════════════════════════════════════════════
|
||||||
|
%% top_modul.vhd — glue logic defined directly in this file
|
||||||
|
%% ════════════════════════════════════════════════════════════
|
||||||
|
subgraph FILE_TOP["📄 top_modul.vhd — glue signals defined here"]
|
||||||
|
direction TB
|
||||||
|
AND_START{"s_ce_units\nclk_1_Hz AND START"}
|
||||||
|
AND2{"CE for Hundreds\ns_tc_units AND s_tc_tens"}
|
||||||
|
AND3{"CE for Thousands\ns_tc_units AND s_tc_tens\nAND s_tc_hundreds"}
|
||||||
|
end
|
||||||
|
|
||||||
|
%% ── Clock / Reset wiring ─────────────────────────────────────
|
||||||
|
CLK --> DIV
|
||||||
|
RST --> DIV
|
||||||
|
CLK --> DIV400
|
||||||
|
RST --> DIV400
|
||||||
|
CLK --> CNT_U & CNT_T & CNT_H & CNT_K
|
||||||
|
RST --> CNT_U & CNT_T & CNT_H & CNT_K & CNT2
|
||||||
|
|
||||||
|
%% ── 1 Hz chain ───────────────────────────────────────────────
|
||||||
|
DIV -->|"clk_1_Hz"| AND_START
|
||||||
|
START --> AND_START
|
||||||
|
AND_START -->|"s_ce_units (CE)"| CNT_U
|
||||||
|
|
||||||
|
%% ── BCD carry chain ──────────────────────────────────────────
|
||||||
|
CNT_U -->|"s_tc_units (TC->CE)"| CNT_T
|
||||||
|
CNT_U -->|"s_tc_units"| AND2
|
||||||
|
CNT_T -->|"s_tc_tens"| AND2
|
||||||
|
AND2 -->|"CE"| CNT_H
|
||||||
|
|
||||||
|
CNT_U -->|"s_tc_units"| AND3
|
||||||
|
CNT_T -->|"s_tc_tens"| AND3
|
||||||
|
CNT_H -->|"s_tc_hundreds"| AND3
|
||||||
|
AND3 -->|"CE"| CNT_K
|
||||||
|
|
||||||
|
%% ── 400 Hz display scan ──────────────────────────────────────
|
||||||
|
DIV400 -->|"clk_400_Hz"| CNT2
|
||||||
|
CNT2 -->|"s_cnt_2bit (SEL)"| DEC_AN
|
||||||
|
CNT2 -->|"s_cnt_2bit (S)"| MUX
|
||||||
|
DEC_AN -->|"ANODES"| ANODS
|
||||||
|
|
||||||
|
%% ── MUX inputs from counters ─────────────────────────────────
|
||||||
|
CNT_U -->|"s_cnt_units (I0)"| MUX
|
||||||
|
CNT_T -->|"s_cnt_tens (I1)"| MUX
|
||||||
|
CNT_H -->|"s_cnt_hundreds (I2)"| MUX
|
||||||
|
CNT_K -->|"s_cnt_thousands (I3)"| MUX
|
||||||
|
|
||||||
|
%% ── Segment decode ───────────────────────────────────────────
|
||||||
|
MUX -->|"s_mux_out (BCD)"| DEC_SEG
|
||||||
|
DEC_SEG -->|"SEG"| SEGMENTS
|
||||||
1
project_6/proj.mermaid.svg
Normal file
1
project_6/proj.mermaid.svg
Normal file
File diff suppressed because one or more lines are too long
|
After Width: | Height: | Size: 281 KiB |
82
project_6/proj2.mermaid
Normal file
82
project_6/proj2.mermaid
Normal file
@@ -0,0 +1,82 @@
|
|||||||
|
flowchart LR
|
||||||
|
|
||||||
|
%% ── Inputs ───────────────────────────────────────────────────
|
||||||
|
CLK([CLK])
|
||||||
|
RST([RST])
|
||||||
|
START([START])
|
||||||
|
|
||||||
|
%% ── Outputs ──────────────────────────────────────────────────
|
||||||
|
SEGMENTS([SEGMENTS])
|
||||||
|
ANODS([ANODS])
|
||||||
|
|
||||||
|
%% ── Clock dividers ───────────────────────────────────────────
|
||||||
|
subgraph FILE_DIV["📄 divider.vhd"]
|
||||||
|
DIV["divider\n──────────\n100MHz → 1Hz pulse"]
|
||||||
|
end
|
||||||
|
|
||||||
|
subgraph FILE_DIV400["📄 divider_400Hz.vhd"]
|
||||||
|
DIV400["divider_400Hz\n──────────\n100MHz → 400Hz pulse"]
|
||||||
|
end
|
||||||
|
|
||||||
|
%% ── Glue in top_modul ────────────────────────────────────────
|
||||||
|
AND_CE(["⚡ top_modul.vhd\ns_ce_units =\nclk_1_Hz AND START"])
|
||||||
|
|
||||||
|
%% ── BCD counter chain ────────────────────────────────────────
|
||||||
|
subgraph FILE_CNT["📄 counter.vhd (entity reused 4×)"]
|
||||||
|
direction LR
|
||||||
|
CNT_U["U_CNT_TOP\n── Units ──\nCE=s_ce_units\nTC→s_tc_units"]
|
||||||
|
CNT_T["U_CNT_BOTTOM\n── Tens ──\nCE=s_tc_units\nTC→s_tc_tens"]
|
||||||
|
CNT_H["U_CNT_3\n── Hundreds ──\nCE=tc_u AND tc_t\nTC→s_tc_hundreds"]
|
||||||
|
CNT_K["U_CNT_4\n── Thousands ──\nCE=tc_u AND tc_t\n AND tc_h\nTC=open"]
|
||||||
|
|
||||||
|
CNT_U -->|"s_tc_units"| CNT_T
|
||||||
|
CNT_T -->|"s_tc_tens"| CNT_H
|
||||||
|
CNT_H -->|"s_tc_hundreds"| CNT_K
|
||||||
|
end
|
||||||
|
|
||||||
|
%% ── Display scan chain ───────────────────────────────────────
|
||||||
|
subgraph FILE_CNT2["📄 counter_2bit.vhd"]
|
||||||
|
CNT2["counter_2bit\n──────────\nIN: clk_400Hz\nOUT: s_cnt_2bit"]
|
||||||
|
end
|
||||||
|
|
||||||
|
subgraph FILE_DEC_AN["📄 decoder_bottom.vhd"]
|
||||||
|
DEC_AN["decoder_an\n──────────\nIN: SEL 2-bit\nOUT: ANODES 4-bit"]
|
||||||
|
end
|
||||||
|
|
||||||
|
%% ── Mux + segment decode ─────────────────────────────────────
|
||||||
|
subgraph FILE_MUX["📄 mux.vhd"]
|
||||||
|
MUX["mux 4×4-bit\n──────────\nI0–I3: digit values\nS: s_cnt_2bit\nY: s_mux_out"]
|
||||||
|
end
|
||||||
|
|
||||||
|
subgraph FILE_DEC_SEG["📄 dec2.vhd"]
|
||||||
|
DEC_SEG["dec_seg\n──────────\nBCD 4-bit\n→ SEG 8-bit"]
|
||||||
|
end
|
||||||
|
|
||||||
|
%% ═══════════════════════════════════════════════════════
|
||||||
|
%% WIRING
|
||||||
|
%% ═══════════════════════════════════════════════════════
|
||||||
|
|
||||||
|
%% Clock sources
|
||||||
|
CLK -->|"100 MHz"| DIV
|
||||||
|
CLK -->|"100 MHz"| DIV400
|
||||||
|
|
||||||
|
%% 1 Hz counting path
|
||||||
|
DIV -->|"clk_1_Hz"| AND_CE
|
||||||
|
START --> AND_CE
|
||||||
|
AND_CE -->|"s_ce_units"| CNT_U
|
||||||
|
|
||||||
|
%% 400 Hz display scan path
|
||||||
|
DIV400 -->|"clk_400_Hz"| CNT2
|
||||||
|
CNT2 -->|"s_cnt_2bit"| DEC_AN
|
||||||
|
CNT2 -->|"s_cnt_2bit (S)"| MUX
|
||||||
|
DEC_AN -->|"ANODES"| ANODS
|
||||||
|
|
||||||
|
%% Counter digits into mux
|
||||||
|
CNT_U -->|"s_cnt_units (I0)"| MUX
|
||||||
|
CNT_T -->|"s_cnt_tens (I1)"| MUX
|
||||||
|
CNT_H -->|"s_cnt_hundreds (I2)"| MUX
|
||||||
|
CNT_K -->|"s_cnt_thousands (I3)"| MUX
|
||||||
|
|
||||||
|
%% Segment output
|
||||||
|
MUX -->|"s_mux_out"| DEC_SEG
|
||||||
|
DEC_SEG -->|"SEG"| SEGMENTS
|
||||||
1
project_6/proj2.mermaid.svg
Normal file
1
project_6/proj2.mermaid.svg
Normal file
File diff suppressed because one or more lines are too long
|
After Width: | Height: | Size: 293 KiB |
@@ -0,0 +1,158 @@
|
|||||||
|
## This file is a general .xdc for the Basys3 rev B board
|
||||||
|
## To use it in a project:
|
||||||
|
## - uncomment the lines corresponding to used pins
|
||||||
|
## - rename the used ports (in each line, after get_ports) according to the top level signal names in the project
|
||||||
|
|
||||||
|
## Clock signal
|
||||||
|
set_property -dict { PACKAGE_PIN W5 IOSTANDARD LVCMOS33 } [get_ports CLK]
|
||||||
|
create_clock -add -name sys_clk_pin -period 10.00 -waveform {0 5} [get_ports CLK]
|
||||||
|
|
||||||
|
|
||||||
|
## Switches
|
||||||
|
set_property -dict { PACKAGE_PIN V17 IOSTANDARD LVCMOS33 } [get_ports {RST}]
|
||||||
|
set_property -dict { PACKAGE_PIN V16 IOSTANDARD LVCMOS33 } [get_ports {START}]
|
||||||
|
#set_property -dict { PACKAGE_PIN W16 IOSTANDARD LVCMOS33 } [get_ports {sw[2]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN W17 IOSTANDARD LVCMOS33 } [get_ports {sw[3]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN W15 IOSTANDARD LVCMOS33 } [get_ports {sw[4]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN V15 IOSTANDARD LVCMOS33 } [get_ports {sw[5]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN W14 IOSTANDARD LVCMOS33 } [get_ports {sw[6]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN W13 IOSTANDARD LVCMOS33 } [get_ports {sw[7]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN V2 IOSTANDARD LVCMOS33 } [get_ports {sw[8]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN T3 IOSTANDARD LVCMOS33 } [get_ports {sw[9]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN T2 IOSTANDARD LVCMOS33 } [get_ports {sw[10]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN R3 IOSTANDARD LVCMOS33 } [get_ports {sw[11]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN W2 IOSTANDARD LVCMOS33 } [get_ports {sw[12]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN U1 IOSTANDARD LVCMOS33 } [get_ports {sw[13]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN T1 IOSTANDARD LVCMOS33 } [get_ports {sw[14]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN R2 IOSTANDARD LVCMOS33 } [get_ports {sw[15]}]
|
||||||
|
|
||||||
|
|
||||||
|
## LEDs
|
||||||
|
#set_property -dict { PACKAGE_PIN U16 IOSTANDARD LVCMOS33 } [get_ports {led[0]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN E19 IOSTANDARD LVCMOS33 } [get_ports {led[1]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN U19 IOSTANDARD LVCMOS33 } [get_ports {led[2]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN V19 IOSTANDARD LVCMOS33 } [get_ports {led[3]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN W18 IOSTANDARD LVCMOS33 } [get_ports {led[4]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN U15 IOSTANDARD LVCMOS33 } [get_ports {led[5]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN U14 IOSTANDARD LVCMOS33 } [get_ports {led[6]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN V14 IOSTANDARD LVCMOS33 } [get_ports {led[7]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN V13 IOSTANDARD LVCMOS33 } [get_ports {led[8]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN V3 IOSTANDARD LVCMOS33 } [get_ports {led[9]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN W3 IOSTANDARD LVCMOS33 } [get_ports {led[10]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN U3 IOSTANDARD LVCMOS33 } [get_ports {led[11]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN P3 IOSTANDARD LVCMOS33 } [get_ports {led[12]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN N3 IOSTANDARD LVCMOS33 } [get_ports {led[13]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN P1 IOSTANDARD LVCMOS33 } [get_ports {led[14]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN L1 IOSTANDARD LVCMOS33 } [get_ports {led[15]}]
|
||||||
|
|
||||||
|
|
||||||
|
##7 Segment Display
|
||||||
|
set_property -dict { PACKAGE_PIN W7 IOSTANDARD LVCMOS33 } [get_ports {SEGMENTS[0]}]
|
||||||
|
set_property -dict { PACKAGE_PIN W6 IOSTANDARD LVCMOS33 } [get_ports {SEGMENTS[1]}]
|
||||||
|
set_property -dict { PACKAGE_PIN U8 IOSTANDARD LVCMOS33 } [get_ports {SEGMENTS[2]}]
|
||||||
|
set_property -dict { PACKAGE_PIN V8 IOSTANDARD LVCMOS33 } [get_ports {SEGMENTS[3]}]
|
||||||
|
set_property -dict { PACKAGE_PIN U5 IOSTANDARD LVCMOS33 } [get_ports {SEGMENTS[4]}]
|
||||||
|
set_property -dict { PACKAGE_PIN V5 IOSTANDARD LVCMOS33 } [get_ports {SEGMENTS[5]}]
|
||||||
|
set_property -dict { PACKAGE_PIN U7 IOSTANDARD LVCMOS33 } [get_ports {SEGMENTS[6]}]
|
||||||
|
|
||||||
|
set_property -dict { PACKAGE_PIN V7 IOSTANDARD LVCMOS33 } [get_ports {SEGMENTS[7]}]
|
||||||
|
|
||||||
|
set_property -dict { PACKAGE_PIN U2 IOSTANDARD LVCMOS33 } [get_ports {ANODS[0]}]
|
||||||
|
set_property -dict { PACKAGE_PIN U4 IOSTANDARD LVCMOS33 } [get_ports {ANODS[1]}]
|
||||||
|
set_property -dict { PACKAGE_PIN V4 IOSTANDARD LVCMOS33 } [get_ports {ANODS[2]}]
|
||||||
|
set_property -dict { PACKAGE_PIN W4 IOSTANDARD LVCMOS33 } [get_ports {ANODS[3]}]
|
||||||
|
|
||||||
|
##Buttons
|
||||||
|
#set_property -dict { PACKAGE_PIN U18 IOSTANDARD LVCMOS33 } [get_ports btnC]
|
||||||
|
#set_property -dict { PACKAGE_PIN T18 IOSTANDARD LVCMOS33 } [get_ports btnU]
|
||||||
|
#set_property -dict { PACKAGE_PIN W19 IOSTANDARD LVCMOS33 } [get_ports btnL]
|
||||||
|
#set_property -dict { PACKAGE_PIN T17 IOSTANDARD LVCMOS33 } [get_ports btnR]
|
||||||
|
#set_property -dict { PACKAGE_PIN U17 IOSTANDARD LVCMOS33 } [get_ports btnD]
|
||||||
|
|
||||||
|
|
||||||
|
##Pmod Header JA
|
||||||
|
#set_property -dict { PACKAGE_PIN J1 IOSTANDARD LVCMOS33 } [get_ports {JA[0]}];#Sch name = JA1
|
||||||
|
#set_property -dict { PACKAGE_PIN L2 IOSTANDARD LVCMOS33 } [get_ports {JA[1]}];#Sch name = JA2
|
||||||
|
#set_property -dict { PACKAGE_PIN J2 IOSTANDARD LVCMOS33 } [get_ports {JA[2]}];#Sch name = JA3
|
||||||
|
#set_property -dict { PACKAGE_PIN G2 IOSTANDARD LVCMOS33 } [get_ports {JA[3]}];#Sch name = JA4
|
||||||
|
#set_property -dict { PACKAGE_PIN H1 IOSTANDARD LVCMOS33 } [get_ports {JA[4]}];#Sch name = JA7
|
||||||
|
#set_property -dict { PACKAGE_PIN K2 IOSTANDARD LVCMOS33 } [get_ports {JA[5]}];#Sch name = JA8
|
||||||
|
#set_property -dict { PACKAGE_PIN H2 IOSTANDARD LVCMOS33 } [get_ports {JA[6]}];#Sch name = JA9
|
||||||
|
#set_property -dict { PACKAGE_PIN G3 IOSTANDARD LVCMOS33 } [get_ports {JA[7]}];#Sch name = JA10
|
||||||
|
|
||||||
|
##Pmod Header JB
|
||||||
|
#set_property -dict { PACKAGE_PIN A14 IOSTANDARD LVCMOS33 } [get_ports {JB[0]}];#Sch name = JB1
|
||||||
|
#set_property -dict { PACKAGE_PIN A16 IOSTANDARD LVCMOS33 } [get_ports {JB[1]}];#Sch name = JB2
|
||||||
|
#set_property -dict { PACKAGE_PIN B15 IOSTANDARD LVCMOS33 } [get_ports {JB[2]}];#Sch name = JB3
|
||||||
|
#set_property -dict { PACKAGE_PIN B16 IOSTANDARD LVCMOS33 } [get_ports {JB[3]}];#Sch name = JB4
|
||||||
|
#set_property -dict { PACKAGE_PIN A15 IOSTANDARD LVCMOS33 } [get_ports {JB[4]}];#Sch name = JB7
|
||||||
|
#set_property -dict { PACKAGE_PIN A17 IOSTANDARD LVCMOS33 } [get_ports {JB[5]}];#Sch name = JB8
|
||||||
|
#set_property -dict { PACKAGE_PIN C15 IOSTANDARD LVCMOS33 } [get_ports {JB[6]}];#Sch name = JB9
|
||||||
|
#set_property -dict { PACKAGE_PIN C16 IOSTANDARD LVCMOS33 } [get_ports {JB[7]}];#Sch name = JB10
|
||||||
|
|
||||||
|
##Pmod Header JC
|
||||||
|
#set_property -dict { PACKAGE_PIN K17 IOSTANDARD LVCMOS33 } [get_ports {JC[0]}];#Sch name = JC1
|
||||||
|
#set_property -dict { PACKAGE_PIN M18 IOSTANDARD LVCMOS33 } [get_ports {JC[1]}];#Sch name = JC2
|
||||||
|
#set_property -dict { PACKAGE_PIN N17 IOSTANDARD LVCMOS33 } [get_ports {JC[2]}];#Sch name = JC3
|
||||||
|
#set_property -dict { PACKAGE_PIN P18 IOSTANDARD LVCMOS33 } [get_ports {JC[3]}];#Sch name = JC4
|
||||||
|
#set_property -dict { PACKAGE_PIN L17 IOSTANDARD LVCMOS33 } [get_ports {JC[4]}];#Sch name = JC7
|
||||||
|
#set_property -dict { PACKAGE_PIN M19 IOSTANDARD LVCMOS33 } [get_ports {JC[5]}];#Sch name = JC8
|
||||||
|
#set_property -dict { PACKAGE_PIN P17 IOSTANDARD LVCMOS33 } [get_ports {JC[6]}];#Sch name = JC9
|
||||||
|
#set_property -dict { PACKAGE_PIN R18 IOSTANDARD LVCMOS33 } [get_ports {JC[7]}];#Sch name = JC10
|
||||||
|
|
||||||
|
##Pmod Header JXADC
|
||||||
|
#set_property -dict { PACKAGE_PIN J3 IOSTANDARD LVCMOS33 } [get_ports {JXADC[0]}];#Sch name = XA1_P
|
||||||
|
#set_property -dict { PACKAGE_PIN L3 IOSTANDARD LVCMOS33 } [get_ports {JXADC[1]}];#Sch name = XA2_P
|
||||||
|
#set_property -dict { PACKAGE_PIN M2 IOSTANDARD LVCMOS33 } [get_ports {JXADC[2]}];#Sch name = XA3_P
|
||||||
|
#set_property -dict { PACKAGE_PIN N2 IOSTANDARD LVCMOS33 } [get_ports {JXADC[3]}];#Sch name = XA4_P
|
||||||
|
#set_property -dict { PACKAGE_PIN K3 IOSTANDARD LVCMOS33 } [get_ports {JXADC[4]}];#Sch name = XA1_N
|
||||||
|
#set_property -dict { PACKAGE_PIN M3 IOSTANDARD LVCMOS33 } [get_ports {JXADC[5]}];#Sch name = XA2_N
|
||||||
|
#set_property -dict { PACKAGE_PIN M1 IOSTANDARD LVCMOS33 } [get_ports {JXADC[6]}];#Sch name = XA3_N
|
||||||
|
#set_property -dict { PACKAGE_PIN N1 IOSTANDARD LVCMOS33 } [get_ports {JXADC[7]}];#Sch name = XA4_N
|
||||||
|
|
||||||
|
|
||||||
|
##VGA Connector
|
||||||
|
#set_property -dict { PACKAGE_PIN G19 IOSTANDARD LVCMOS33 } [get_ports {vgaRed[0]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN H19 IOSTANDARD LVCMOS33 } [get_ports {vgaRed[1]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN J19 IOSTANDARD LVCMOS33 } [get_ports {vgaRed[2]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN N19 IOSTANDARD LVCMOS33 } [get_ports {vgaRed[3]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN N18 IOSTANDARD LVCMOS33 } [get_ports {vgaBlue[0]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN L18 IOSTANDARD LVCMOS33 } [get_ports {vgaBlue[1]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN K18 IOSTANDARD LVCMOS33 } [get_ports {vgaBlue[2]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN J18 IOSTANDARD LVCMOS33 } [get_ports {vgaBlue[3]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN J17 IOSTANDARD LVCMOS33 } [get_ports {vgaGreen[0]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN H17 IOSTANDARD LVCMOS33 } [get_ports {vgaGreen[1]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN G17 IOSTANDARD LVCMOS33 } [get_ports {vgaGreen[2]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN D17 IOSTANDARD LVCMOS33 } [get_ports {vgaGreen[3]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN P19 IOSTANDARD LVCMOS33 } [get_ports Hsync]
|
||||||
|
#set_property -dict { PACKAGE_PIN R19 IOSTANDARD LVCMOS33 } [get_ports Vsync]
|
||||||
|
|
||||||
|
|
||||||
|
##USB-RS232 Interface
|
||||||
|
#set_property -dict { PACKAGE_PIN B18 IOSTANDARD LVCMOS33 } [get_ports RsRx]
|
||||||
|
#set_property -dict { PACKAGE_PIN A18 IOSTANDARD LVCMOS33 } [get_ports RsTx]
|
||||||
|
|
||||||
|
|
||||||
|
##USB HID (PS/2)
|
||||||
|
#set_property -dict { PACKAGE_PIN C17 IOSTANDARD LVCMOS33 PULLUP true } [get_ports PS2Clk]
|
||||||
|
#set_property -dict { PACKAGE_PIN B17 IOSTANDARD LVCMOS33 PULLUP true } [get_ports PS2Data]
|
||||||
|
|
||||||
|
|
||||||
|
##Quad SPI Flash
|
||||||
|
##Note that CCLK_0 cannot be placed in 7 series devices. You can access it using the
|
||||||
|
##STARTUPE2 primitive.
|
||||||
|
#set_property -dict { PACKAGE_PIN D18 IOSTANDARD LVCMOS33 } [get_ports {QspiDB[0]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN D19 IOSTANDARD LVCMOS33 } [get_ports {QspiDB[1]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN G18 IOSTANDARD LVCMOS33 } [get_ports {QspiDB[2]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN F18 IOSTANDARD LVCMOS33 } [get_ports {QspiDB[3]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN K19 IOSTANDARD LVCMOS33 } [get_ports QspiCSn]
|
||||||
|
|
||||||
|
|
||||||
|
## Configuration options, can be used for all designs
|
||||||
|
set_property CONFIG_VOLTAGE 3.3 [current_design]
|
||||||
|
set_property CFGBVS VCCO [current_design]
|
||||||
|
|
||||||
|
## SPI configuration mode options for QSPI boot, can be used for all designs
|
||||||
|
set_property BITSTREAM.GENERAL.COMPRESS TRUE [current_design]
|
||||||
|
set_property BITSTREAM.CONFIG.CONFIGRATE 33 [current_design]
|
||||||
|
set_property CONFIG_MODE SPIx4 [current_design]
|
||||||
72
project_6/project_5.srcs/sources_1/new/counter.vhd
Normal file
72
project_6/project_5.srcs/sources_1/new/counter.vhd
Normal file
@@ -0,0 +1,72 @@
|
|||||||
|
----------------------------------------------------------------------------------
|
||||||
|
-- Company:
|
||||||
|
-- Engineer:
|
||||||
|
--
|
||||||
|
-- Create Date: 09.03.2026 15:14:35
|
||||||
|
-- Design Name:
|
||||||
|
-- Module Name: counter - Behavioral
|
||||||
|
-- Project Name:
|
||||||
|
-- Target Devices:
|
||||||
|
-- Tool Versions:
|
||||||
|
-- Description:
|
||||||
|
--
|
||||||
|
-- Dependencies:
|
||||||
|
--
|
||||||
|
-- Revision:
|
||||||
|
-- Revision 0.01 - File Created
|
||||||
|
-- Additional Comments:
|
||||||
|
--
|
||||||
|
----------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
library IEEE;
|
||||||
|
use IEEE.STD_LOGIC_1164.ALL;
|
||||||
|
use IEEE.STD_LOGIC_UNSIGNED.ALL;
|
||||||
|
|
||||||
|
-- Uncomment the following library declaration if using
|
||||||
|
-- arithmetic functions with Signed or Unsigned values
|
||||||
|
--use IEEE.NUMERIC_STD.ALL;
|
||||||
|
|
||||||
|
-- Uncomment the following library declaration if instantiating
|
||||||
|
-- any Xilinx leaf cells in this code.
|
||||||
|
--library UNISIM;
|
||||||
|
--use UNISIM.VComponents.all;
|
||||||
|
|
||||||
|
entity counter is
|
||||||
|
Port ( CLK : in STD_LOGIC;
|
||||||
|
RST : in STD_LOGIC;
|
||||||
|
CE : in STD_LOGIC;
|
||||||
|
TC : out STD_LOGIC;
|
||||||
|
COUNT_OUT : out STD_LOGIC_VECTOR (3 downto 0));
|
||||||
|
end counter;
|
||||||
|
|
||||||
|
architecture Behavioral of counter is
|
||||||
|
-- Internal signal to keep track of the current number
|
||||||
|
signal s_cnt : STD_LOGIC_VECTOR(3 downto 0) := "0000";
|
||||||
|
begin
|
||||||
|
|
||||||
|
-- Main counting logic
|
||||||
|
process(CLK)
|
||||||
|
begin
|
||||||
|
if rising_edge(CLK) then
|
||||||
|
if RST = '1' then
|
||||||
|
s_cnt <= "0000";
|
||||||
|
elsif CE = '1' then
|
||||||
|
if s_cnt = "1001" then -- If we are at 9
|
||||||
|
s_cnt <= "0000"; -- Reset to 0
|
||||||
|
else
|
||||||
|
s_cnt <= s_cnt + 1; -- Increment
|
||||||
|
end if;
|
||||||
|
end if;
|
||||||
|
end if;
|
||||||
|
end process;
|
||||||
|
|
||||||
|
-- Terminal Count logic (The red line connection)
|
||||||
|
-- TC is '1' ONLY when we are at 9 AND the enable pulse is active.
|
||||||
|
-- This ensures the next counter only moves once per rollover.
|
||||||
|
TC <= '1' when (s_cnt = "1001" and CE = '1') else '0';
|
||||||
|
|
||||||
|
-- Drive the output ports
|
||||||
|
COUNT_OUT <= s_cnt;
|
||||||
|
|
||||||
|
end Behavioral;
|
||||||
55
project_6/project_5.srcs/sources_1/new/counter_2bit.vhd
Normal file
55
project_6/project_5.srcs/sources_1/new/counter_2bit.vhd
Normal file
@@ -0,0 +1,55 @@
|
|||||||
|
----------------------------------------------------------------------------------
|
||||||
|
-- Company:
|
||||||
|
-- Engineer:
|
||||||
|
--
|
||||||
|
-- Create Date: 09.03.2026 15:32:13
|
||||||
|
-- Design Name:
|
||||||
|
-- Module Name: counter_2bit - Behavioral
|
||||||
|
-- Project Name:
|
||||||
|
-- Target Devices:
|
||||||
|
-- Tool Versions:
|
||||||
|
-- Description:
|
||||||
|
--
|
||||||
|
-- Dependencies:
|
||||||
|
--
|
||||||
|
-- Revision:
|
||||||
|
-- Revision 0.01 - File Created
|
||||||
|
-- Additional Comments:
|
||||||
|
--
|
||||||
|
----------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
library IEEE;
|
||||||
|
use IEEE.STD_LOGIC_1164.ALL;
|
||||||
|
use IEEE.STD_LOGIC_UNSIGNED.ALL;
|
||||||
|
|
||||||
|
-- Uncomment the following library declaration if using
|
||||||
|
-- arithmetic functions with Signed or Unsigned values
|
||||||
|
--use IEEE.NUMERIC_STD.ALL;
|
||||||
|
|
||||||
|
-- Uncomment the following library declaration if instantiating
|
||||||
|
-- any Xilinx leaf cells in this code.
|
||||||
|
--library UNISIM;
|
||||||
|
--use UNISIM.VComponents.all;
|
||||||
|
|
||||||
|
entity counter_2bit is
|
||||||
|
Port ( CLK : in STD_LOGIC;
|
||||||
|
RST : in STD_LOGIC;
|
||||||
|
COUNT_OUT : out STD_LOGIC_VECTOR (1 downto 0));
|
||||||
|
end counter_2bit;
|
||||||
|
|
||||||
|
architecture Behavioral of counter_2bit is
|
||||||
|
|
||||||
|
signal s_cnt : STD_LOGIC_VECTOR(1 downto 0) := "00";
|
||||||
|
begin
|
||||||
|
process(CLK, RST)
|
||||||
|
begin
|
||||||
|
if RST = '1' then
|
||||||
|
s_cnt <= "00";
|
||||||
|
elsif rising_edge(CLK) then
|
||||||
|
s_cnt <= s_cnt + 1;
|
||||||
|
end if;
|
||||||
|
end process;
|
||||||
|
COUNT_OUT <= s_cnt;
|
||||||
|
|
||||||
|
end Behavioral;
|
||||||
58
project_6/project_5.srcs/sources_1/new/dec2.vhd
Normal file
58
project_6/project_5.srcs/sources_1/new/dec2.vhd
Normal file
@@ -0,0 +1,58 @@
|
|||||||
|
----------------------------------------------------------------------------------
|
||||||
|
-- Company:
|
||||||
|
-- Engineer:
|
||||||
|
--
|
||||||
|
-- Create Date: 09.03.2026 15:54:24
|
||||||
|
-- Design Name:
|
||||||
|
-- Module Name: dec_seg - Behavioral
|
||||||
|
-- Project Name:
|
||||||
|
-- Target Devices:
|
||||||
|
-- Tool Versions:
|
||||||
|
-- Description:
|
||||||
|
--
|
||||||
|
-- Dependencies:
|
||||||
|
--
|
||||||
|
-- Revision:
|
||||||
|
-- Revision 0.01 - File Created
|
||||||
|
-- Additional Comments:
|
||||||
|
--
|
||||||
|
----------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
library IEEE;
|
||||||
|
use IEEE.STD_LOGIC_1164.ALL;
|
||||||
|
|
||||||
|
-- Uncomment the following library declaration if using
|
||||||
|
-- arithmetic functions with Signed or Unsigned values
|
||||||
|
--use IEEE.NUMERIC_STD.ALL;
|
||||||
|
|
||||||
|
-- Uncomment the following library declaration if instantiating
|
||||||
|
-- any Xilinx leaf cells in this code.
|
||||||
|
--library UNISIM;
|
||||||
|
--use UNISIM.VComponents.all;
|
||||||
|
|
||||||
|
entity dec_seg is
|
||||||
|
Port ( BCD : in STD_LOGIC_VECTOR (3 downto 0);
|
||||||
|
SEG : out STD_LOGIC_VECTOR (7 downto 0));
|
||||||
|
end dec_seg;
|
||||||
|
|
||||||
|
architecture Behavioral of dec_seg is
|
||||||
|
|
||||||
|
begin
|
||||||
|
-- Konverzia BCD na 7-segment (ABCDEFG + DP)
|
||||||
|
-- Form<72>t: "ABCDEFG DP"
|
||||||
|
|
||||||
|
with bcd select
|
||||||
|
seg <= "11000000" when "0000", -- 0
|
||||||
|
"11111001" when "0001", -- 1
|
||||||
|
"10100100" when "0010", -- 2
|
||||||
|
"10110000" when "0011", -- 3
|
||||||
|
"10011001" when "0100", -- 4
|
||||||
|
"10010010" when "0101", -- 5
|
||||||
|
"10000010" when "0110", -- 6
|
||||||
|
"11111000" when "0111", -- 7
|
||||||
|
"10000000" when "1000", -- 8
|
||||||
|
"10010000" when "1001", -- 9
|
||||||
|
"11111111" when others; -- off
|
||||||
|
|
||||||
|
end Behavioral;
|
||||||
50
project_6/project_5.srcs/sources_1/new/decoder_bottom.vhd
Normal file
50
project_6/project_5.srcs/sources_1/new/decoder_bottom.vhd
Normal file
@@ -0,0 +1,50 @@
|
|||||||
|
----------------------------------------------------------------------------------
|
||||||
|
-- Company:
|
||||||
|
-- Engineer:
|
||||||
|
--
|
||||||
|
-- Create Date: 09.03.2026 15:39:11
|
||||||
|
-- Design Name:
|
||||||
|
-- Module Name: decoder_bottom - Behavioral
|
||||||
|
-- Project Name:
|
||||||
|
-- Target Devices:
|
||||||
|
-- Tool Versions:
|
||||||
|
-- Description:
|
||||||
|
--
|
||||||
|
-- Dependencies:
|
||||||
|
--
|
||||||
|
-- Revision:
|
||||||
|
-- Revision 0.01 - File Created
|
||||||
|
-- Additional Comments:
|
||||||
|
--
|
||||||
|
----------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
library IEEE;
|
||||||
|
use IEEE.STD_LOGIC_1164.ALL;
|
||||||
|
use IEEE.STD_LOGIC_UNSIGNED.ALL;
|
||||||
|
|
||||||
|
-- Uncomment the following library declaration if using
|
||||||
|
-- arithmetic functions with Signed or Unsigned values
|
||||||
|
--use IEEE.NUMERIC_STD.ALL;
|
||||||
|
|
||||||
|
-- Uncomment the following library declaration if instantiating
|
||||||
|
-- any Xilinx leaf cells in this code.
|
||||||
|
--library UNISIM;
|
||||||
|
--use UNISIM.VComponents.all;
|
||||||
|
|
||||||
|
entity decoder_an is
|
||||||
|
Port ( SEL : in STD_LOGIC_VECTOR (1 downto 0);
|
||||||
|
ANODES : out STD_LOGIC_VECTOR (3 downto 0));
|
||||||
|
end decoder_an;
|
||||||
|
|
||||||
|
architecture Behavioral of decoder_an is
|
||||||
|
|
||||||
|
begin
|
||||||
|
with SEL select
|
||||||
|
ANODES <= "1110" when "00",
|
||||||
|
"1101" when "01",
|
||||||
|
"1011" when "10",
|
||||||
|
"0111" when "11",
|
||||||
|
"1111" when others;
|
||||||
|
|
||||||
|
end Behavioral;
|
||||||
60
project_6/project_5.srcs/sources_1/new/divider.vhd
Normal file
60
project_6/project_5.srcs/sources_1/new/divider.vhd
Normal file
@@ -0,0 +1,60 @@
|
|||||||
|
----------------------------------------------------------------------------------
|
||||||
|
-- Company:
|
||||||
|
-- Engineer:
|
||||||
|
--
|
||||||
|
-- Create Date: 09.03.2026 14:43:21
|
||||||
|
-- Design Name:
|
||||||
|
-- Module Name: divider - Behavioral
|
||||||
|
-- Project Name:
|
||||||
|
-- Target Devices:
|
||||||
|
-- Tool Versions:
|
||||||
|
-- Description:
|
||||||
|
--
|
||||||
|
-- Dependencies:
|
||||||
|
--
|
||||||
|
-- Revision:
|
||||||
|
-- Revision 0.01 - File Created
|
||||||
|
-- Additional Comments:
|
||||||
|
--
|
||||||
|
----------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
library IEEE;
|
||||||
|
use IEEE.STD_LOGIC_1164.ALL;
|
||||||
|
use IEEE.STD_LOGIC_UNSIGNED.ALL;
|
||||||
|
|
||||||
|
-- Uncomment the following library declaration if using
|
||||||
|
-- arithmetic functions with Signed or Unsigned values
|
||||||
|
--use IEEE.NUMERIC_STD.ALL;
|
||||||
|
|
||||||
|
-- Uncomment the following library declaration if instantiating
|
||||||
|
-- any Xilinx leaf cells in this code.
|
||||||
|
--library UNISIM;
|
||||||
|
--use UNISIM.VComponents.all;
|
||||||
|
|
||||||
|
entity divider is
|
||||||
|
Port ( CLK : in STD_LOGIC;
|
||||||
|
RST : in STD_LOGIC;
|
||||||
|
CLK_1_Hz : out STD_LOGIC);
|
||||||
|
end divider;
|
||||||
|
|
||||||
|
architecture Behavioral of divider is
|
||||||
|
-- 27 bits is enough for 100 million
|
||||||
|
signal s_cnt : STD_LOGIC_VECTOR(26 downto 0) := (others => '0');
|
||||||
|
begin
|
||||||
|
process(CLK)
|
||||||
|
begin
|
||||||
|
if rising_edge(CLK) then
|
||||||
|
if RST = '1' then
|
||||||
|
s_cnt <= (others => '0');
|
||||||
|
CLK_1_Hz <= '0';
|
||||||
|
elsif s_cnt = 5_000_000 then
|
||||||
|
s_cnt <= (others => '0');
|
||||||
|
CLK_1_Hz <= '1'; -- The pulse
|
||||||
|
else
|
||||||
|
s_cnt <= s_cnt + 1;
|
||||||
|
CLK_1_Hz <= '0';
|
||||||
|
end if;
|
||||||
|
end if;
|
||||||
|
end process;
|
||||||
|
end Behavioral;
|
||||||
60
project_6/project_5.srcs/sources_1/new/divider_400Hz.vhd
Normal file
60
project_6/project_5.srcs/sources_1/new/divider_400Hz.vhd
Normal file
@@ -0,0 +1,60 @@
|
|||||||
|
----------------------------------------------------------------------------------
|
||||||
|
-- Company:
|
||||||
|
-- Engineer:
|
||||||
|
--
|
||||||
|
-- Create Date: 09.03.2026 14:49:47
|
||||||
|
-- Design Name:
|
||||||
|
-- Module Name: divider_400Hz - Behavioral
|
||||||
|
-- Project Name:
|
||||||
|
-- Target Devices:
|
||||||
|
-- Tool Versions:
|
||||||
|
-- Description:
|
||||||
|
--
|
||||||
|
-- Dependencies:
|
||||||
|
--
|
||||||
|
-- Revision:
|
||||||
|
-- Revision 0.01 - File Created
|
||||||
|
-- Additional Comments:
|
||||||
|
--
|
||||||
|
----------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
library IEEE;
|
||||||
|
use IEEE.STD_LOGIC_1164.ALL;
|
||||||
|
use IEEE.STD_LOGIC_UNSIGNED.ALL;
|
||||||
|
|
||||||
|
-- Uncomment the following library declaration if using
|
||||||
|
-- arithmetic functions with Signed or Unsigned values
|
||||||
|
--use IEEE.NUMERIC_STD.ALL;
|
||||||
|
|
||||||
|
-- Uncomment the following library declaration if instantiating
|
||||||
|
-- any Xilinx leaf cells in this code.
|
||||||
|
--library UNISIM;
|
||||||
|
--use UNISIM.VComponents.all;
|
||||||
|
|
||||||
|
entity divider_400Hz is
|
||||||
|
Port ( CLK : in STD_LOGIC;
|
||||||
|
RST : in STD_LOGIC;
|
||||||
|
CLK_400_Hz : out STD_LOGIC);
|
||||||
|
end divider_400Hz;
|
||||||
|
|
||||||
|
architecture Behavioral of divider_400Hz is
|
||||||
|
-- 18 bits is enough for 250,000
|
||||||
|
signal s_cnt : STD_LOGIC_VECTOR(17 downto 0) := (others => '0');
|
||||||
|
begin
|
||||||
|
process(CLK)
|
||||||
|
begin
|
||||||
|
if rising_edge(CLK) then
|
||||||
|
if RST = '1' then
|
||||||
|
s_cnt <= (others => '0');
|
||||||
|
CLK_400_Hz <= '0';
|
||||||
|
elsif s_cnt = 249_999 then
|
||||||
|
s_cnt <= (others => '0');
|
||||||
|
CLK_400_Hz <= '1';
|
||||||
|
else
|
||||||
|
s_cnt <= s_cnt + 1;
|
||||||
|
CLK_400_Hz <= '0';
|
||||||
|
end if;
|
||||||
|
end if;
|
||||||
|
end process;
|
||||||
|
end Behavioral;
|
||||||
53
project_6/project_5.srcs/sources_1/new/mux.vhd
Normal file
53
project_6/project_5.srcs/sources_1/new/mux.vhd
Normal file
@@ -0,0 +1,53 @@
|
|||||||
|
----------------------------------------------------------------------------------
|
||||||
|
-- Company:
|
||||||
|
-- Engineer:
|
||||||
|
--
|
||||||
|
-- Create Date: 09.03.2026 15:47:51
|
||||||
|
-- Design Name:
|
||||||
|
-- Module Name: mux - Behavioral
|
||||||
|
-- Project Name:
|
||||||
|
-- Target Devices:
|
||||||
|
-- Tool Versions:
|
||||||
|
-- Description:
|
||||||
|
--
|
||||||
|
-- Dependencies:
|
||||||
|
--
|
||||||
|
-- Revision:
|
||||||
|
-- Revision 0.01 - File Created
|
||||||
|
-- Additional Comments:
|
||||||
|
--
|
||||||
|
----------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
library IEEE;
|
||||||
|
use IEEE.STD_LOGIC_1164.ALL;
|
||||||
|
|
||||||
|
-- Uncomment the following library declaration if using
|
||||||
|
-- arithmetic functions with Signed or Unsigned values
|
||||||
|
--use IEEE.NUMERIC_STD.ALL;
|
||||||
|
|
||||||
|
-- Uncomment the following library declaration if instantiating
|
||||||
|
-- any Xilinx leaf cells in this code.
|
||||||
|
--library UNISIM;
|
||||||
|
--use UNISIM.VComponents.all;
|
||||||
|
|
||||||
|
entity mux is
|
||||||
|
Port ( I0 : in STD_LOGIC_VECTOR (3 downto 0);
|
||||||
|
I1 : in STD_LOGIC_VECTOR (3 downto 0);
|
||||||
|
I2 : in STD_LOGIC_VECTOR (3 downto 0);
|
||||||
|
I3 : in STD_LOGIC_VECTOR (3 downto 0);
|
||||||
|
S : in STD_LOGIC_VECTOR (1 downto 0);
|
||||||
|
Y : out STD_LOGIC_VECTOR (3 downto 0));
|
||||||
|
end mux;
|
||||||
|
|
||||||
|
architecture Behavioral of mux is
|
||||||
|
|
||||||
|
begin
|
||||||
|
with S select
|
||||||
|
Y <= I0 when "00",
|
||||||
|
I1 when "01",
|
||||||
|
I2 when "10",
|
||||||
|
I3 when "11",
|
||||||
|
"0000" when others;
|
||||||
|
|
||||||
|
end Behavioral;
|
||||||
190
project_6/project_5.srcs/sources_1/new/top_modul.vhd
Normal file
190
project_6/project_5.srcs/sources_1/new/top_modul.vhd
Normal file
@@ -0,0 +1,190 @@
|
|||||||
|
----------------------------------------------------------------------------------
|
||||||
|
-- Company:
|
||||||
|
-- Engineer:
|
||||||
|
--
|
||||||
|
-- Create Date: 09.03.2026 14:40:14
|
||||||
|
-- Design Name:
|
||||||
|
-- Module Name: top_modul - Behavioral
|
||||||
|
-- Project Name:
|
||||||
|
-- Target Devices:
|
||||||
|
-- Tool Versions:
|
||||||
|
-- Description:
|
||||||
|
--
|
||||||
|
-- Dependencies:
|
||||||
|
--
|
||||||
|
-- Revision:
|
||||||
|
-- Revision 0.01 - File Created
|
||||||
|
-- Additional Comments:
|
||||||
|
--
|
||||||
|
----------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
library IEEE;
|
||||||
|
use IEEE.STD_LOGIC_1164.ALL;
|
||||||
|
|
||||||
|
-- Uncomment the following library declaration if using
|
||||||
|
-- arithmetic functions with Signed or Unsigned values
|
||||||
|
--use IEEE.NUMERIC_STD.ALL;
|
||||||
|
|
||||||
|
-- Uncomment the following library declaration if instantiating
|
||||||
|
-- any Xilinx leaf cells in this code.
|
||||||
|
--library UNISIM;
|
||||||
|
--use UNISIM.VComponents.all;
|
||||||
|
|
||||||
|
entity top_modul is
|
||||||
|
Port ( CLK : in STD_LOGIC;
|
||||||
|
RST : in STD_LOGIC;
|
||||||
|
START : in STD_LOGIC;
|
||||||
|
SEGMENTS : out STD_LOGIC_VECTOR (7 downto 0);
|
||||||
|
ANODS : out STD_LOGIC_VECTOR (3 downto 0));
|
||||||
|
end top_modul;
|
||||||
|
|
||||||
|
architecture Behavioral of top_modul is
|
||||||
|
|
||||||
|
component divider is
|
||||||
|
Port ( CLK : in STD_LOGIC;
|
||||||
|
RST : in STD_LOGIC;
|
||||||
|
CLK_1_Hz : out STD_LOGIC); -- This will be our enable pulse
|
||||||
|
end component;
|
||||||
|
|
||||||
|
component divider_400Hz is
|
||||||
|
Port ( CLK : in STD_LOGIC;
|
||||||
|
RST : in STD_LOGIC;
|
||||||
|
CLK_400_Hz : out STD_LOGIC); -- This will be our enable pulse
|
||||||
|
end component;
|
||||||
|
|
||||||
|
component counter is
|
||||||
|
Port ( CLK : in STD_LOGIC;
|
||||||
|
RST : in STD_LOGIC;
|
||||||
|
CE : in STD_LOGIC;
|
||||||
|
TC : out STD_LOGIC;
|
||||||
|
COUNT_OUT : out STD_LOGIC_VECTOR (3 downto 0));
|
||||||
|
end component;
|
||||||
|
|
||||||
|
component counter_2bit is
|
||||||
|
Port ( CLK : in STD_LOGIC;
|
||||||
|
RST : in STD_LOGIC;
|
||||||
|
COUNT_OUT : out STD_LOGIC_VECTOR (1 downto 0));
|
||||||
|
end component;
|
||||||
|
|
||||||
|
component decoder_an is
|
||||||
|
Port ( SEL : in STD_LOGIC_VECTOR (1 downto 0);
|
||||||
|
ANODES : out STD_LOGIC_VECTOR (3 downto 0));
|
||||||
|
end component;
|
||||||
|
|
||||||
|
component mux is
|
||||||
|
Port ( I0 : in STD_LOGIC_VECTOR (3 downto 0);
|
||||||
|
I1 : in STD_LOGIC_VECTOR (3 downto 0);
|
||||||
|
I2 : in STD_LOGIC_VECTOR (3 downto 0);
|
||||||
|
I3 : in STD_LOGIC_VECTOR (3 downto 0);
|
||||||
|
S : in STD_LOGIC_VECTOR (1 downto 0);
|
||||||
|
Y : out STD_LOGIC_VECTOR (3 downto 0));
|
||||||
|
end component;
|
||||||
|
|
||||||
|
component dec_seg is
|
||||||
|
Port ( bcd : in STD_LOGIC_VECTOR (3 downto 0);
|
||||||
|
seg : out STD_LOGIC_VECTOR (7 downto 0));
|
||||||
|
end component;
|
||||||
|
|
||||||
|
signal clk_1_Hz : std_logic;
|
||||||
|
signal clk_400_Hz : std_logic;
|
||||||
|
|
||||||
|
signal s_ce_units : std_logic;
|
||||||
|
signal s_tc_units : std_logic; -- Wire connecting Top TC to Bottom CE
|
||||||
|
signal s_tc_tens : std_logic;
|
||||||
|
signal s_tc_hundreds : std_logic;
|
||||||
|
signal s_cnt_units : std_logic_vector(3 downto 0); -- To MUX I0
|
||||||
|
signal s_cnt_tens : std_logic_vector(3 downto 0); -- To MUX I1
|
||||||
|
signal s_cnt_hundreds : std_logic_vector(3 downto 0);
|
||||||
|
signal s_cnt_thousands: std_logic_vector(3 downto 0);
|
||||||
|
|
||||||
|
signal s_cnt_2bit : std_logic_vector(1 downto 0);
|
||||||
|
|
||||||
|
signal s_mux_out : std_logic_vector(3 downto 0);
|
||||||
|
|
||||||
|
begin
|
||||||
|
|
||||||
|
U_DIV : divider
|
||||||
|
port map (
|
||||||
|
CLK => CLK,
|
||||||
|
RST => RST,
|
||||||
|
CLK_1_Hz => clk_1_Hz
|
||||||
|
);
|
||||||
|
|
||||||
|
|
||||||
|
U_DIV_400Hz : divider_400Hz
|
||||||
|
port map (
|
||||||
|
CLK => CLK,
|
||||||
|
RST => RST,
|
||||||
|
CLK_400_Hz => clk_400_Hz
|
||||||
|
);
|
||||||
|
|
||||||
|
s_ce_units <= clk_1_Hz and START;
|
||||||
|
-- TOP COUNTER (Units)
|
||||||
|
U_CNT_TOP : counter
|
||||||
|
port map (
|
||||||
|
CLK => CLK,
|
||||||
|
RST => RST,
|
||||||
|
CE => s_ce_units,
|
||||||
|
TC => s_tc_units,
|
||||||
|
COUNT_OUT => s_cnt_units
|
||||||
|
);
|
||||||
|
|
||||||
|
-- BOTTOM COUNTER (Tens)
|
||||||
|
U_CNT_BOTTOM : counter
|
||||||
|
port map (
|
||||||
|
CLK => CLK,
|
||||||
|
RST => RST,
|
||||||
|
CE => s_tc_units, -- Increments only when top counter hits 9
|
||||||
|
TC => s_tc_tens,
|
||||||
|
COUNT_OUT => s_cnt_tens
|
||||||
|
);
|
||||||
|
-- 3 COUNTER (Stovky)
|
||||||
|
U_CNT_3 : counter
|
||||||
|
port map (
|
||||||
|
CLK => CLK,
|
||||||
|
RST => RST,
|
||||||
|
CE => s_tc_tens and s_tc_units,
|
||||||
|
TC => s_tc_hundreds,
|
||||||
|
COUNT_OUT => s_cnt_hundreds
|
||||||
|
);
|
||||||
|
-- 4 COUNTER (Tisicky)
|
||||||
|
U_CNT_4 : counter
|
||||||
|
port map (
|
||||||
|
CLK => CLK,
|
||||||
|
RST => RST,
|
||||||
|
CE => s_tc_tens and s_tc_units and s_tc_hundreds,
|
||||||
|
TC => open, -- Free TC
|
||||||
|
COUNT_OUT => s_cnt_thousands
|
||||||
|
);
|
||||||
|
|
||||||
|
U_CNT_2BIT : counter_2bit
|
||||||
|
port map (
|
||||||
|
CLK => clk_400_Hz,
|
||||||
|
RST => RST,
|
||||||
|
COUNT_OUT => s_cnt_2bit
|
||||||
|
);
|
||||||
|
|
||||||
|
U_DEC_ANODES : decoder_an
|
||||||
|
port map (
|
||||||
|
SEL => s_cnt_2bit, -- 2-bitov<6F> sign<67>l
|
||||||
|
ANODES => ANODS -- V<>stupn<70> port top modulu
|
||||||
|
);
|
||||||
|
|
||||||
|
U_MUX : mux
|
||||||
|
port map (
|
||||||
|
I0 => s_cnt_units, -- V<>stup z prv<72>ho <20><>ta<74>a
|
||||||
|
I1 => s_cnt_tens, -- V<>stup z druh<75>ho <20><>ta<74>a
|
||||||
|
I2 => s_cnt_hundreds,
|
||||||
|
I3 => s_cnt_thousands,
|
||||||
|
S => s_cnt_2bit, -- Sign<67>l zo zelen<65>ho <20><>ta<74>a (v<>ber an<61>dy)
|
||||||
|
Y => s_mux_out -- Vybran<61> <20><>slica pre segmenty
|
||||||
|
);
|
||||||
|
|
||||||
|
U_DEC_SEG : dec_seg
|
||||||
|
port map (
|
||||||
|
BCD => s_mux_out, -- <20><>slica vybran<61> multiplexerom
|
||||||
|
SEG => SEGMENTS -- V<>stupn<70> port top modulu (8 bitov)
|
||||||
|
);
|
||||||
|
|
||||||
|
end Behavioral;
|
||||||
281
project_6/project_5.xpr
Normal file
281
project_6/project_5.xpr
Normal file
@@ -0,0 +1,281 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!-- Product Version: Vivado v2022.2 (64-bit) -->
|
||||||
|
<!-- -->
|
||||||
|
<!-- Copyright 1986-2022 Xilinx, Inc. All Rights Reserved. -->
|
||||||
|
|
||||||
|
<Project Version="7" Minor="61" Path="C:/Users/student/Documents/priecinok/project_6/project_5.xpr">
|
||||||
|
<DefaultLaunch Dir="$PRUNDIR"/>
|
||||||
|
<Configuration>
|
||||||
|
<Option Name="Id" Val="e38d1a4c4a2f4256841e587df17ee164"/>
|
||||||
|
<Option Name="Part" Val="xc7a35tcpg236-1"/>
|
||||||
|
<Option Name="CompiledLibDir" Val="$PCACHEDIR/compile_simlib"/>
|
||||||
|
<Option Name="CompiledLibDirXSim" Val=""/>
|
||||||
|
<Option Name="CompiledLibDirModelSim" Val="$PCACHEDIR/compile_simlib/modelsim"/>
|
||||||
|
<Option Name="CompiledLibDirQuesta" Val="$PCACHEDIR/compile_simlib/questa"/>
|
||||||
|
<Option Name="CompiledLibDirXcelium" Val="$PCACHEDIR/compile_simlib/xcelium"/>
|
||||||
|
<Option Name="CompiledLibDirVCS" Val="$PCACHEDIR/compile_simlib/vcs"/>
|
||||||
|
<Option Name="CompiledLibDirRiviera" Val="$PCACHEDIR/compile_simlib/riviera"/>
|
||||||
|
<Option Name="CompiledLibDirActivehdl" Val="$PCACHEDIR/compile_simlib/activehdl"/>
|
||||||
|
<Option Name="SimulatorInstallDirModelSim" Val=""/>
|
||||||
|
<Option Name="SimulatorInstallDirQuesta" Val=""/>
|
||||||
|
<Option Name="SimulatorInstallDirXcelium" Val=""/>
|
||||||
|
<Option Name="SimulatorInstallDirVCS" Val=""/>
|
||||||
|
<Option Name="SimulatorInstallDirRiviera" Val=""/>
|
||||||
|
<Option Name="SimulatorInstallDirActiveHdl" Val=""/>
|
||||||
|
<Option Name="SimulatorGccInstallDirModelSim" Val=""/>
|
||||||
|
<Option Name="SimulatorGccInstallDirQuesta" Val=""/>
|
||||||
|
<Option Name="SimulatorGccInstallDirXcelium" Val=""/>
|
||||||
|
<Option Name="SimulatorGccInstallDirVCS" Val=""/>
|
||||||
|
<Option Name="SimulatorGccInstallDirRiviera" Val=""/>
|
||||||
|
<Option Name="SimulatorGccInstallDirActiveHdl" Val=""/>
|
||||||
|
<Option Name="SimulatorVersionXsim" Val="2022.2"/>
|
||||||
|
<Option Name="SimulatorVersionModelSim" Val="2022.2"/>
|
||||||
|
<Option Name="SimulatorVersionQuesta" Val="2022.2"/>
|
||||||
|
<Option Name="SimulatorVersionXcelium" Val="21.09.009"/>
|
||||||
|
<Option Name="SimulatorVersionVCS" Val="S-2021.09"/>
|
||||||
|
<Option Name="SimulatorVersionRiviera" Val="2022.04"/>
|
||||||
|
<Option Name="SimulatorVersionActiveHdl" Val="13.0"/>
|
||||||
|
<Option Name="SimulatorGccVersionXsim" Val="6.2.0"/>
|
||||||
|
<Option Name="SimulatorGccVersionModelSim" Val="7.4.0"/>
|
||||||
|
<Option Name="SimulatorGccVersionQuesta" Val="7.4.0"/>
|
||||||
|
<Option Name="SimulatorGccVersionXcelium" Val="9.3.0"/>
|
||||||
|
<Option Name="SimulatorGccVersionVCS" Val="9.2.0"/>
|
||||||
|
<Option Name="SimulatorGccVersionRiviera" Val="9.3.0"/>
|
||||||
|
<Option Name="SimulatorGccVersionActiveHdl" Val="9.3.0"/>
|
||||||
|
<Option Name="TargetLanguage" Val="VHDL"/>
|
||||||
|
<Option Name="SimulatorLanguage" Val="VHDL"/>
|
||||||
|
<Option Name="BoardPart" Val="digilentinc.com:basys3:part0:1.2"/>
|
||||||
|
<Option Name="BoardPartRepoPaths" Val="$PPRDIR/../../../AppData/Roaming/Xilinx/Vivado/2022.2/xhub/board_store/xilinx_board_store"/>
|
||||||
|
<Option Name="ActiveSimSet" Val="sim_1"/>
|
||||||
|
<Option Name="DefaultLib" Val="xil_defaultlib"/>
|
||||||
|
<Option Name="ProjectType" Val="Default"/>
|
||||||
|
<Option Name="IPOutputRepo" Val="$PCACHEDIR/ip"/>
|
||||||
|
<Option Name="IPDefaultOutputPath" Val="$PGENDIR/sources_1"/>
|
||||||
|
<Option Name="IPCachePermission" Val="read"/>
|
||||||
|
<Option Name="IPCachePermission" Val="write"/>
|
||||||
|
<Option Name="EnableCoreContainer" Val="FALSE"/>
|
||||||
|
<Option Name="EnableResourceEstimation" Val="FALSE"/>
|
||||||
|
<Option Name="SimCompileState" Val="TRUE"/>
|
||||||
|
<Option Name="CreateRefXciForCoreContainers" Val="FALSE"/>
|
||||||
|
<Option Name="IPUserFilesDir" Val="$PIPUSERFILESDIR"/>
|
||||||
|
<Option Name="IPStaticSourceDir" Val="$PIPUSERFILESDIR/ipstatic"/>
|
||||||
|
<Option Name="EnableBDX" Val="FALSE"/>
|
||||||
|
<Option Name="DSABoardId" Val="basys3"/>
|
||||||
|
<Option Name="WTXSimLaunchSim" Val="0"/>
|
||||||
|
<Option Name="WTModelSimLaunchSim" Val="0"/>
|
||||||
|
<Option Name="WTQuestaLaunchSim" Val="0"/>
|
||||||
|
<Option Name="WTIesLaunchSim" Val="0"/>
|
||||||
|
<Option Name="WTVcsLaunchSim" Val="0"/>
|
||||||
|
<Option Name="WTRivieraLaunchSim" Val="0"/>
|
||||||
|
<Option Name="WTActivehdlLaunchSim" Val="0"/>
|
||||||
|
<Option Name="WTXSimExportSim" Val="0"/>
|
||||||
|
<Option Name="WTModelSimExportSim" Val="0"/>
|
||||||
|
<Option Name="WTQuestaExportSim" Val="0"/>
|
||||||
|
<Option Name="WTIesExportSim" Val="0"/>
|
||||||
|
<Option Name="WTVcsExportSim" Val="0"/>
|
||||||
|
<Option Name="WTRivieraExportSim" Val="0"/>
|
||||||
|
<Option Name="WTActivehdlExportSim" Val="0"/>
|
||||||
|
<Option Name="GenerateIPUpgradeLog" Val="TRUE"/>
|
||||||
|
<Option Name="XSimRadix" Val="hex"/>
|
||||||
|
<Option Name="XSimTimeUnit" Val="ns"/>
|
||||||
|
<Option Name="XSimArrayDisplayLimit" Val="1024"/>
|
||||||
|
<Option Name="XSimTraceLimit" Val="65536"/>
|
||||||
|
<Option Name="SimTypes" Val="rtl"/>
|
||||||
|
<Option Name="SimTypes" Val="bfm"/>
|
||||||
|
<Option Name="SimTypes" Val="tlm"/>
|
||||||
|
<Option Name="SimTypes" Val="tlm_dpi"/>
|
||||||
|
<Option Name="MEMEnableMemoryMapGeneration" Val="TRUE"/>
|
||||||
|
<Option Name="DcpsUptoDate" Val="TRUE"/>
|
||||||
|
<Option Name="ClassicSocBoot" Val="FALSE"/>
|
||||||
|
<Option Name="LocalIPRepoLeafDirName" Val="ip_repo"/>
|
||||||
|
</Configuration>
|
||||||
|
<FileSets Version="1" Minor="31">
|
||||||
|
<FileSet Name="sources_1" Type="DesignSrcs" RelSrcDir="$PSRCDIR/sources_1" RelGenDir="$PGENDIR/sources_1">
|
||||||
|
<Filter Type="Srcs"/>
|
||||||
|
<File Path="$PSRCDIR/sources_1/new/counter.vhd">
|
||||||
|
<FileInfo>
|
||||||
|
<Attr Name="UsedIn" Val="synthesis"/>
|
||||||
|
<Attr Name="UsedIn" Val="simulation"/>
|
||||||
|
</FileInfo>
|
||||||
|
</File>
|
||||||
|
<File Path="$PSRCDIR/sources_1/new/counter_2bit.vhd">
|
||||||
|
<FileInfo>
|
||||||
|
<Attr Name="UsedIn" Val="synthesis"/>
|
||||||
|
<Attr Name="UsedIn" Val="simulation"/>
|
||||||
|
</FileInfo>
|
||||||
|
</File>
|
||||||
|
<File Path="$PSRCDIR/sources_1/new/dec2.vhd">
|
||||||
|
<FileInfo>
|
||||||
|
<Attr Name="UsedIn" Val="synthesis"/>
|
||||||
|
<Attr Name="UsedIn" Val="simulation"/>
|
||||||
|
</FileInfo>
|
||||||
|
</File>
|
||||||
|
<File Path="$PSRCDIR/sources_1/new/decoder_bottom.vhd">
|
||||||
|
<FileInfo>
|
||||||
|
<Attr Name="UsedIn" Val="synthesis"/>
|
||||||
|
<Attr Name="UsedIn" Val="simulation"/>
|
||||||
|
</FileInfo>
|
||||||
|
</File>
|
||||||
|
<File Path="$PSRCDIR/sources_1/new/divider.vhd">
|
||||||
|
<FileInfo>
|
||||||
|
<Attr Name="UsedIn" Val="synthesis"/>
|
||||||
|
<Attr Name="UsedIn" Val="simulation"/>
|
||||||
|
</FileInfo>
|
||||||
|
</File>
|
||||||
|
<File Path="$PSRCDIR/sources_1/new/divider_400Hz.vhd">
|
||||||
|
<FileInfo>
|
||||||
|
<Attr Name="UsedIn" Val="synthesis"/>
|
||||||
|
<Attr Name="UsedIn" Val="simulation"/>
|
||||||
|
</FileInfo>
|
||||||
|
</File>
|
||||||
|
<File Path="$PSRCDIR/sources_1/new/mux.vhd">
|
||||||
|
<FileInfo>
|
||||||
|
<Attr Name="UsedIn" Val="synthesis"/>
|
||||||
|
<Attr Name="UsedIn" Val="simulation"/>
|
||||||
|
</FileInfo>
|
||||||
|
</File>
|
||||||
|
<File Path="$PSRCDIR/sources_1/new/top_modul.vhd">
|
||||||
|
<FileInfo>
|
||||||
|
<Attr Name="UsedIn" Val="synthesis"/>
|
||||||
|
<Attr Name="UsedIn" Val="simulation"/>
|
||||||
|
</FileInfo>
|
||||||
|
</File>
|
||||||
|
<Config>
|
||||||
|
<Option Name="DesignMode" Val="RTL"/>
|
||||||
|
<Option Name="TopModule" Val="top_modul"/>
|
||||||
|
<Option Name="TopAutoSet" Val="TRUE"/>
|
||||||
|
</Config>
|
||||||
|
</FileSet>
|
||||||
|
<FileSet Name="constrs_1" Type="Constrs" RelSrcDir="$PSRCDIR/constrs_1" RelGenDir="$PGENDIR/constrs_1">
|
||||||
|
<Filter Type="Constrs"/>
|
||||||
|
<File Path="$PSRCDIR/constrs_1/new/projekt_5.xdc">
|
||||||
|
<FileInfo>
|
||||||
|
<Attr Name="UsedIn" Val="synthesis"/>
|
||||||
|
<Attr Name="UsedIn" Val="implementation"/>
|
||||||
|
</FileInfo>
|
||||||
|
</File>
|
||||||
|
<File Path="$PSRCDIR/constrs_1/imports/Downloads/Basys-3-Master.xdc">
|
||||||
|
<FileInfo>
|
||||||
|
<Attr Name="ImportPath" Val="$PPRDIR/../../../Downloads/Basys-3-Master.xdc"/>
|
||||||
|
<Attr Name="ImportTime" Val="1771253458"/>
|
||||||
|
<Attr Name="UsedIn" Val="synthesis"/>
|
||||||
|
<Attr Name="UsedIn" Val="implementation"/>
|
||||||
|
</FileInfo>
|
||||||
|
</File>
|
||||||
|
<Config>
|
||||||
|
<Option Name="ConstrsType" Val="XDC"/>
|
||||||
|
</Config>
|
||||||
|
</FileSet>
|
||||||
|
<FileSet Name="sim_1" Type="SimulationSrcs" RelSrcDir="$PSRCDIR/sim_1" RelGenDir="$PGENDIR/sim_1">
|
||||||
|
<Filter Type="Srcs"/>
|
||||||
|
<Config>
|
||||||
|
<Option Name="DesignMode" Val="RTL"/>
|
||||||
|
<Option Name="TopModule" Val="top_modul"/>
|
||||||
|
<Option Name="TopLib" Val="xil_defaultlib"/>
|
||||||
|
<Option Name="TopAutoSet" Val="TRUE"/>
|
||||||
|
<Option Name="TransportPathDelay" Val="0"/>
|
||||||
|
<Option Name="TransportIntDelay" Val="0"/>
|
||||||
|
<Option Name="SelectedSimModel" Val="rtl"/>
|
||||||
|
<Option Name="PamDesignTestbench" Val=""/>
|
||||||
|
<Option Name="PamDutBypassFile" Val="xil_dut_bypass"/>
|
||||||
|
<Option Name="PamSignalDriverFile" Val="xil_bypass_driver"/>
|
||||||
|
<Option Name="PamPseudoTop" Val="pseudo_tb"/>
|
||||||
|
<Option Name="SrcSet" Val="sources_1"/>
|
||||||
|
</Config>
|
||||||
|
</FileSet>
|
||||||
|
<FileSet Name="utils_1" Type="Utils" RelSrcDir="$PSRCDIR/utils_1" RelGenDir="$PGENDIR/utils_1">
|
||||||
|
<Filter Type="Utils"/>
|
||||||
|
<File Path="$PSRCDIR/utils_1/imports/synth_1/top_modul.dcp">
|
||||||
|
<FileInfo>
|
||||||
|
<Attr Name="UsedIn" Val="synthesis"/>
|
||||||
|
<Attr Name="UsedIn" Val="implementation"/>
|
||||||
|
<Attr Name="UsedInSteps" Val="synth_1"/>
|
||||||
|
<Attr Name="AutoDcp" Val="1"/>
|
||||||
|
</FileInfo>
|
||||||
|
</File>
|
||||||
|
<Config>
|
||||||
|
<Option Name="TopAutoSet" Val="TRUE"/>
|
||||||
|
</Config>
|
||||||
|
</FileSet>
|
||||||
|
</FileSets>
|
||||||
|
<Simulators>
|
||||||
|
<Simulator Name="XSim">
|
||||||
|
<Option Name="Description" Val="Vivado Simulator"/>
|
||||||
|
<Option Name="CompiledLib" Val="0"/>
|
||||||
|
</Simulator>
|
||||||
|
<Simulator Name="ModelSim">
|
||||||
|
<Option Name="Description" Val="ModelSim Simulator"/>
|
||||||
|
</Simulator>
|
||||||
|
<Simulator Name="Questa">
|
||||||
|
<Option Name="Description" Val="Questa Advanced Simulator"/>
|
||||||
|
</Simulator>
|
||||||
|
<Simulator Name="Riviera">
|
||||||
|
<Option Name="Description" Val="Riviera-PRO Simulator"/>
|
||||||
|
</Simulator>
|
||||||
|
<Simulator Name="ActiveHDL">
|
||||||
|
<Option Name="Description" Val="Active-HDL Simulator"/>
|
||||||
|
</Simulator>
|
||||||
|
</Simulators>
|
||||||
|
<Runs Version="1" Minor="19">
|
||||||
|
<Run Id="synth_1" Type="Ft3:Synth" SrcSet="sources_1" Part="xc7a35tcpg236-1" ConstrsSet="constrs_1" Description="Vivado Synthesis Defaults" AutoIncrementalCheckpoint="true" IncrementalCheckpoint="$PSRCDIR/utils_1/imports/synth_1/top_modul.dcp" WriteIncrSynthDcp="false" State="current" Dir="$PRUNDIR/synth_1" IncludeInArchive="true" IsChild="false" AutoIncrementalDir="$PSRCDIR/utils_1/imports/synth_1" AutoRQSDir="$PSRCDIR/utils_1/imports/synth_1">
|
||||||
|
<Strategy Version="1" Minor="2">
|
||||||
|
<StratHandle Name="Vivado Synthesis Defaults" Flow="Vivado Synthesis 2022"/>
|
||||||
|
<Step Id="synth_design"/>
|
||||||
|
</Strategy>
|
||||||
|
<GeneratedRun Dir="$PRUNDIR" File="gen_run.xml"/>
|
||||||
|
<ReportStrategy Name="Vivado Synthesis Default Reports" Flow="Vivado Synthesis 2022"/>
|
||||||
|
<Report Name="ROUTE_DESIGN.REPORT_METHODOLOGY" Enabled="1"/>
|
||||||
|
<RQSFiles/>
|
||||||
|
</Run>
|
||||||
|
<Run Id="impl_1" Type="Ft2:EntireDesign" Part="xc7a35tcpg236-1" ConstrsSet="constrs_1" Description="Default settings for Implementation." AutoIncrementalCheckpoint="false" WriteIncrSynthDcp="false" State="current" Dir="$PRUNDIR/impl_1" SynthRun="synth_1" IncludeInArchive="true" IsChild="false" GenFullBitstream="true" AutoIncrementalDir="$PSRCDIR/utils_1/imports/impl_1" AutoRQSDir="$PSRCDIR/utils_1/imports/impl_1">
|
||||||
|
<Strategy Version="1" Minor="2">
|
||||||
|
<StratHandle Name="Vivado Implementation Defaults" Flow="Vivado Implementation 2022"/>
|
||||||
|
<Step Id="init_design"/>
|
||||||
|
<Step Id="opt_design"/>
|
||||||
|
<Step Id="power_opt_design"/>
|
||||||
|
<Step Id="place_design"/>
|
||||||
|
<Step Id="post_place_power_opt_design"/>
|
||||||
|
<Step Id="phys_opt_design"/>
|
||||||
|
<Step Id="route_design"/>
|
||||||
|
<Step Id="post_route_phys_opt_design"/>
|
||||||
|
<Step Id="write_bitstream"/>
|
||||||
|
</Strategy>
|
||||||
|
<GeneratedRun Dir="$PRUNDIR" File="gen_run.xml"/>
|
||||||
|
<ReportStrategy Name="Vivado Implementation Default Reports" Flow="Vivado Implementation 2022"/>
|
||||||
|
<Report Name="ROUTE_DESIGN.REPORT_METHODOLOGY" Enabled="1"/>
|
||||||
|
<RQSFiles/>
|
||||||
|
</Run>
|
||||||
|
</Runs>
|
||||||
|
<Board>
|
||||||
|
<Jumpers/>
|
||||||
|
</Board>
|
||||||
|
<DashboardSummary Version="1" Minor="0">
|
||||||
|
<Dashboards>
|
||||||
|
<Dashboard Name="default_dashboard">
|
||||||
|
<Gadgets>
|
||||||
|
<Gadget Name="drc_1" Type="drc" Version="1" Row="2" Column="0">
|
||||||
|
<GadgetParam Name="REPORTS" Type="string_list" Value="impl_1#impl_1_route_report_drc_0 "/>
|
||||||
|
</Gadget>
|
||||||
|
<Gadget Name="methodology_1" Type="methodology" Version="1" Row="2" Column="1">
|
||||||
|
<GadgetParam Name="REPORTS" Type="string_list" Value="impl_1#impl_1_route_report_methodology_0 "/>
|
||||||
|
</Gadget>
|
||||||
|
<Gadget Name="power_1" Type="power" Version="1" Row="1" Column="0">
|
||||||
|
<GadgetParam Name="REPORTS" Type="string_list" Value="impl_1#impl_1_route_report_power_0 "/>
|
||||||
|
</Gadget>
|
||||||
|
<Gadget Name="timing_1" Type="timing" Version="1" Row="0" Column="1">
|
||||||
|
<GadgetParam Name="REPORTS" Type="string_list" Value="impl_1#impl_1_route_report_timing_summary_0 "/>
|
||||||
|
</Gadget>
|
||||||
|
<Gadget Name="utilization_1" Type="utilization" Version="1" Row="0" Column="0">
|
||||||
|
<GadgetParam Name="REPORTS" Type="string_list" Value="synth_1#synth_1_synth_report_utilization_0 "/>
|
||||||
|
<GadgetParam Name="RUN.STEP" Type="string" Value="synth_design"/>
|
||||||
|
<GadgetParam Name="RUN.TYPE" Type="string" Value="synthesis"/>
|
||||||
|
</Gadget>
|
||||||
|
<Gadget Name="utilization_2" Type="utilization" Version="1" Row="1" Column="1">
|
||||||
|
<GadgetParam Name="REPORTS" Type="string_list" Value="impl_1#impl_1_place_report_utilization_0 "/>
|
||||||
|
</Gadget>
|
||||||
|
</Gadgets>
|
||||||
|
</Dashboard>
|
||||||
|
<CurrentDashboard>default_dashboard</CurrentDashboard>
|
||||||
|
</Dashboards>
|
||||||
|
</DashboardSummary>
|
||||||
|
</Project>
|
||||||
@@ -0,0 +1,158 @@
|
|||||||
|
## This file is a general .xdc for the Basys3 rev B board
|
||||||
|
## To use it in a project:
|
||||||
|
## - uncomment the lines corresponding to used pins
|
||||||
|
## - rename the used ports (in each line, after get_ports) according to the top level signal names in the project
|
||||||
|
|
||||||
|
## Clock signal
|
||||||
|
set_property -dict { PACKAGE_PIN W5 IOSTANDARD LVCMOS33 } [get_ports CLK]
|
||||||
|
create_clock -add -name sys_clk_pin -period 10.00 -waveform {0 5} [get_ports CLK]
|
||||||
|
|
||||||
|
|
||||||
|
## Switches
|
||||||
|
set_property -dict { PACKAGE_PIN V17 IOSTANDARD LVCMOS33 } [get_ports {RST}]
|
||||||
|
set_property -dict { PACKAGE_PIN V16 IOSTANDARD LVCMOS33 } [get_ports {START}]
|
||||||
|
#set_property -dict { PACKAGE_PIN W16 IOSTANDARD LVCMOS33 } [get_ports {sw[2]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN W17 IOSTANDARD LVCMOS33 } [get_ports {sw[3]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN W15 IOSTANDARD LVCMOS33 } [get_ports {sw[4]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN V15 IOSTANDARD LVCMOS33 } [get_ports {sw[5]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN W14 IOSTANDARD LVCMOS33 } [get_ports {sw[6]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN W13 IOSTANDARD LVCMOS33 } [get_ports {sw[7]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN V2 IOSTANDARD LVCMOS33 } [get_ports {sw[8]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN T3 IOSTANDARD LVCMOS33 } [get_ports {sw[9]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN T2 IOSTANDARD LVCMOS33 } [get_ports {sw[10]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN R3 IOSTANDARD LVCMOS33 } [get_ports {sw[11]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN W2 IOSTANDARD LVCMOS33 } [get_ports {sw[12]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN U1 IOSTANDARD LVCMOS33 } [get_ports {sw[13]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN T1 IOSTANDARD LVCMOS33 } [get_ports {sw[14]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN R2 IOSTANDARD LVCMOS33 } [get_ports {sw[15]}]
|
||||||
|
|
||||||
|
|
||||||
|
## LEDs
|
||||||
|
#set_property -dict { PACKAGE_PIN U16 IOSTANDARD LVCMOS33 } [get_ports {led[0]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN E19 IOSTANDARD LVCMOS33 } [get_ports {led[1]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN U19 IOSTANDARD LVCMOS33 } [get_ports {led[2]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN V19 IOSTANDARD LVCMOS33 } [get_ports {led[3]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN W18 IOSTANDARD LVCMOS33 } [get_ports {led[4]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN U15 IOSTANDARD LVCMOS33 } [get_ports {led[5]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN U14 IOSTANDARD LVCMOS33 } [get_ports {led[6]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN V14 IOSTANDARD LVCMOS33 } [get_ports {led[7]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN V13 IOSTANDARD LVCMOS33 } [get_ports {led[8]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN V3 IOSTANDARD LVCMOS33 } [get_ports {led[9]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN W3 IOSTANDARD LVCMOS33 } [get_ports {led[10]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN U3 IOSTANDARD LVCMOS33 } [get_ports {led[11]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN P3 IOSTANDARD LVCMOS33 } [get_ports {led[12]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN N3 IOSTANDARD LVCMOS33 } [get_ports {led[13]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN P1 IOSTANDARD LVCMOS33 } [get_ports {led[14]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN L1 IOSTANDARD LVCMOS33 } [get_ports {led[15]}]
|
||||||
|
|
||||||
|
|
||||||
|
##7 Segment Display
|
||||||
|
set_property -dict { PACKAGE_PIN W7 IOSTANDARD LVCMOS33 } [get_ports {SEGMENTS[0]}]
|
||||||
|
set_property -dict { PACKAGE_PIN W6 IOSTANDARD LVCMOS33 } [get_ports {SEGMENTS[1]}]
|
||||||
|
set_property -dict { PACKAGE_PIN U8 IOSTANDARD LVCMOS33 } [get_ports {SEGMENTS[2]}]
|
||||||
|
set_property -dict { PACKAGE_PIN V8 IOSTANDARD LVCMOS33 } [get_ports {SEGMENTS[3]}]
|
||||||
|
set_property -dict { PACKAGE_PIN U5 IOSTANDARD LVCMOS33 } [get_ports {SEGMENTS[4]}]
|
||||||
|
set_property -dict { PACKAGE_PIN V5 IOSTANDARD LVCMOS33 } [get_ports {SEGMENTS[5]}]
|
||||||
|
set_property -dict { PACKAGE_PIN U7 IOSTANDARD LVCMOS33 } [get_ports {SEGMENTS[6]}]
|
||||||
|
|
||||||
|
set_property -dict { PACKAGE_PIN V7 IOSTANDARD LVCMOS33 } [get_ports {SEGMENTS[7]}]
|
||||||
|
|
||||||
|
set_property -dict { PACKAGE_PIN U2 IOSTANDARD LVCMOS33 } [get_ports {ANODS[0]}]
|
||||||
|
set_property -dict { PACKAGE_PIN U4 IOSTANDARD LVCMOS33 } [get_ports {ANODS[1]}]
|
||||||
|
set_property -dict { PACKAGE_PIN V4 IOSTANDARD LVCMOS33 } [get_ports {ANODS[2]}]
|
||||||
|
set_property -dict { PACKAGE_PIN W4 IOSTANDARD LVCMOS33 } [get_ports {ANODS[3]}]
|
||||||
|
|
||||||
|
##Buttons
|
||||||
|
#set_property -dict { PACKAGE_PIN U18 IOSTANDARD LVCMOS33 } [get_ports btnC]
|
||||||
|
#set_property -dict { PACKAGE_PIN T18 IOSTANDARD LVCMOS33 } [get_ports btnU]
|
||||||
|
#set_property -dict { PACKAGE_PIN W19 IOSTANDARD LVCMOS33 } [get_ports btnL]
|
||||||
|
#set_property -dict { PACKAGE_PIN T17 IOSTANDARD LVCMOS33 } [get_ports btnR]
|
||||||
|
#set_property -dict { PACKAGE_PIN U17 IOSTANDARD LVCMOS33 } [get_ports btnD]
|
||||||
|
|
||||||
|
|
||||||
|
##Pmod Header JA
|
||||||
|
#set_property -dict { PACKAGE_PIN J1 IOSTANDARD LVCMOS33 } [get_ports {JA[0]}];#Sch name = JA1
|
||||||
|
#set_property -dict { PACKAGE_PIN L2 IOSTANDARD LVCMOS33 } [get_ports {JA[1]}];#Sch name = JA2
|
||||||
|
#set_property -dict { PACKAGE_PIN J2 IOSTANDARD LVCMOS33 } [get_ports {JA[2]}];#Sch name = JA3
|
||||||
|
#set_property -dict { PACKAGE_PIN G2 IOSTANDARD LVCMOS33 } [get_ports {JA[3]}];#Sch name = JA4
|
||||||
|
#set_property -dict { PACKAGE_PIN H1 IOSTANDARD LVCMOS33 } [get_ports {JA[4]}];#Sch name = JA7
|
||||||
|
#set_property -dict { PACKAGE_PIN K2 IOSTANDARD LVCMOS33 } [get_ports {JA[5]}];#Sch name = JA8
|
||||||
|
#set_property -dict { PACKAGE_PIN H2 IOSTANDARD LVCMOS33 } [get_ports {JA[6]}];#Sch name = JA9
|
||||||
|
#set_property -dict { PACKAGE_PIN G3 IOSTANDARD LVCMOS33 } [get_ports {JA[7]}];#Sch name = JA10
|
||||||
|
|
||||||
|
##Pmod Header JB
|
||||||
|
#set_property -dict { PACKAGE_PIN A14 IOSTANDARD LVCMOS33 } [get_ports {JB[0]}];#Sch name = JB1
|
||||||
|
#set_property -dict { PACKAGE_PIN A16 IOSTANDARD LVCMOS33 } [get_ports {JB[1]}];#Sch name = JB2
|
||||||
|
#set_property -dict { PACKAGE_PIN B15 IOSTANDARD LVCMOS33 } [get_ports {JB[2]}];#Sch name = JB3
|
||||||
|
#set_property -dict { PACKAGE_PIN B16 IOSTANDARD LVCMOS33 } [get_ports {JB[3]}];#Sch name = JB4
|
||||||
|
#set_property -dict { PACKAGE_PIN A15 IOSTANDARD LVCMOS33 } [get_ports {JB[4]}];#Sch name = JB7
|
||||||
|
#set_property -dict { PACKAGE_PIN A17 IOSTANDARD LVCMOS33 } [get_ports {JB[5]}];#Sch name = JB8
|
||||||
|
#set_property -dict { PACKAGE_PIN C15 IOSTANDARD LVCMOS33 } [get_ports {JB[6]}];#Sch name = JB9
|
||||||
|
#set_property -dict { PACKAGE_PIN C16 IOSTANDARD LVCMOS33 } [get_ports {JB[7]}];#Sch name = JB10
|
||||||
|
|
||||||
|
##Pmod Header JC
|
||||||
|
#set_property -dict { PACKAGE_PIN K17 IOSTANDARD LVCMOS33 } [get_ports {JC[0]}];#Sch name = JC1
|
||||||
|
#set_property -dict { PACKAGE_PIN M18 IOSTANDARD LVCMOS33 } [get_ports {JC[1]}];#Sch name = JC2
|
||||||
|
#set_property -dict { PACKAGE_PIN N17 IOSTANDARD LVCMOS33 } [get_ports {JC[2]}];#Sch name = JC3
|
||||||
|
#set_property -dict { PACKAGE_PIN P18 IOSTANDARD LVCMOS33 } [get_ports {JC[3]}];#Sch name = JC4
|
||||||
|
#set_property -dict { PACKAGE_PIN L17 IOSTANDARD LVCMOS33 } [get_ports {JC[4]}];#Sch name = JC7
|
||||||
|
#set_property -dict { PACKAGE_PIN M19 IOSTANDARD LVCMOS33 } [get_ports {JC[5]}];#Sch name = JC8
|
||||||
|
#set_property -dict { PACKAGE_PIN P17 IOSTANDARD LVCMOS33 } [get_ports {JC[6]}];#Sch name = JC9
|
||||||
|
#set_property -dict { PACKAGE_PIN R18 IOSTANDARD LVCMOS33 } [get_ports {JC[7]}];#Sch name = JC10
|
||||||
|
|
||||||
|
##Pmod Header JXADC
|
||||||
|
#set_property -dict { PACKAGE_PIN J3 IOSTANDARD LVCMOS33 } [get_ports {JXADC[0]}];#Sch name = XA1_P
|
||||||
|
#set_property -dict { PACKAGE_PIN L3 IOSTANDARD LVCMOS33 } [get_ports {JXADC[1]}];#Sch name = XA2_P
|
||||||
|
#set_property -dict { PACKAGE_PIN M2 IOSTANDARD LVCMOS33 } [get_ports {JXADC[2]}];#Sch name = XA3_P
|
||||||
|
#set_property -dict { PACKAGE_PIN N2 IOSTANDARD LVCMOS33 } [get_ports {JXADC[3]}];#Sch name = XA4_P
|
||||||
|
#set_property -dict { PACKAGE_PIN K3 IOSTANDARD LVCMOS33 } [get_ports {JXADC[4]}];#Sch name = XA1_N
|
||||||
|
#set_property -dict { PACKAGE_PIN M3 IOSTANDARD LVCMOS33 } [get_ports {JXADC[5]}];#Sch name = XA2_N
|
||||||
|
#set_property -dict { PACKAGE_PIN M1 IOSTANDARD LVCMOS33 } [get_ports {JXADC[6]}];#Sch name = XA3_N
|
||||||
|
#set_property -dict { PACKAGE_PIN N1 IOSTANDARD LVCMOS33 } [get_ports {JXADC[7]}];#Sch name = XA4_N
|
||||||
|
|
||||||
|
|
||||||
|
##VGA Connector
|
||||||
|
#set_property -dict { PACKAGE_PIN G19 IOSTANDARD LVCMOS33 } [get_ports {vgaRed[0]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN H19 IOSTANDARD LVCMOS33 } [get_ports {vgaRed[1]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN J19 IOSTANDARD LVCMOS33 } [get_ports {vgaRed[2]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN N19 IOSTANDARD LVCMOS33 } [get_ports {vgaRed[3]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN N18 IOSTANDARD LVCMOS33 } [get_ports {vgaBlue[0]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN L18 IOSTANDARD LVCMOS33 } [get_ports {vgaBlue[1]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN K18 IOSTANDARD LVCMOS33 } [get_ports {vgaBlue[2]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN J18 IOSTANDARD LVCMOS33 } [get_ports {vgaBlue[3]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN J17 IOSTANDARD LVCMOS33 } [get_ports {vgaGreen[0]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN H17 IOSTANDARD LVCMOS33 } [get_ports {vgaGreen[1]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN G17 IOSTANDARD LVCMOS33 } [get_ports {vgaGreen[2]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN D17 IOSTANDARD LVCMOS33 } [get_ports {vgaGreen[3]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN P19 IOSTANDARD LVCMOS33 } [get_ports Hsync]
|
||||||
|
#set_property -dict { PACKAGE_PIN R19 IOSTANDARD LVCMOS33 } [get_ports Vsync]
|
||||||
|
|
||||||
|
|
||||||
|
##USB-RS232 Interface
|
||||||
|
#set_property -dict { PACKAGE_PIN B18 IOSTANDARD LVCMOS33 } [get_ports RsRx]
|
||||||
|
#set_property -dict { PACKAGE_PIN A18 IOSTANDARD LVCMOS33 } [get_ports RsTx]
|
||||||
|
|
||||||
|
|
||||||
|
##USB HID (PS/2)
|
||||||
|
#set_property -dict { PACKAGE_PIN C17 IOSTANDARD LVCMOS33 PULLUP true } [get_ports PS2Clk]
|
||||||
|
#set_property -dict { PACKAGE_PIN B17 IOSTANDARD LVCMOS33 PULLUP true } [get_ports PS2Data]
|
||||||
|
|
||||||
|
|
||||||
|
##Quad SPI Flash
|
||||||
|
##Note that CCLK_0 cannot be placed in 7 series devices. You can access it using the
|
||||||
|
##STARTUPE2 primitive.
|
||||||
|
#set_property -dict { PACKAGE_PIN D18 IOSTANDARD LVCMOS33 } [get_ports {QspiDB[0]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN D19 IOSTANDARD LVCMOS33 } [get_ports {QspiDB[1]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN G18 IOSTANDARD LVCMOS33 } [get_ports {QspiDB[2]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN F18 IOSTANDARD LVCMOS33 } [get_ports {QspiDB[3]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN K19 IOSTANDARD LVCMOS33 } [get_ports QspiCSn]
|
||||||
|
|
||||||
|
|
||||||
|
## Configuration options, can be used for all designs
|
||||||
|
set_property CONFIG_VOLTAGE 3.3 [current_design]
|
||||||
|
set_property CFGBVS VCCO [current_design]
|
||||||
|
|
||||||
|
## SPI configuration mode options for QSPI boot, can be used for all designs
|
||||||
|
set_property BITSTREAM.GENERAL.COMPRESS TRUE [current_design]
|
||||||
|
set_property BITSTREAM.CONFIG.CONFIGRATE 33 [current_design]
|
||||||
|
set_property CONFIG_MODE SPIx4 [current_design]
|
||||||
73
project_6/project_6.srcs/sources_1/new/counter.vhd
Normal file
73
project_6/project_6.srcs/sources_1/new/counter.vhd
Normal file
@@ -0,0 +1,73 @@
|
|||||||
|
----------------------------------------------------------------------------------
|
||||||
|
-- Company:
|
||||||
|
-- Engineer:
|
||||||
|
--
|
||||||
|
-- Create Date: 09.03.2026 15:14:35
|
||||||
|
-- Design Name:
|
||||||
|
-- Module Name: counter - Behavioral
|
||||||
|
-- Project Name:
|
||||||
|
-- Target Devices:
|
||||||
|
-- Tool Versions:
|
||||||
|
-- Description:
|
||||||
|
--
|
||||||
|
-- Dependencies:
|
||||||
|
--
|
||||||
|
-- Revision:
|
||||||
|
-- Revision 0.01 - File Created
|
||||||
|
-- Additional Comments:
|
||||||
|
--
|
||||||
|
----------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
library IEEE;
|
||||||
|
use IEEE.STD_LOGIC_1164.ALL;
|
||||||
|
use IEEE.STD_LOGIC_UNSIGNED.ALL;
|
||||||
|
|
||||||
|
-- Uncomment the following library declaration if using
|
||||||
|
-- arithmetic functions with Signed or Unsigned values
|
||||||
|
--use IEEE.NUMERIC_STD.ALL;
|
||||||
|
|
||||||
|
-- Uncomment the following library declaration if instantiating
|
||||||
|
-- any Xilinx leaf cells in this code.
|
||||||
|
--library UNISIM;
|
||||||
|
--use UNISIM.VComponents.all;
|
||||||
|
|
||||||
|
entity counter is
|
||||||
|
Port ( CLK : in STD_LOGIC;
|
||||||
|
RST : in STD_LOGIC;
|
||||||
|
CE : in STD_LOGIC;
|
||||||
|
TC : out STD_LOGIC;
|
||||||
|
COUNT_OUT : out STD_LOGIC_VECTOR (3 downto 0));
|
||||||
|
end counter;
|
||||||
|
|
||||||
|
architecture Behavioral of counter is
|
||||||
|
-- Internal signal to keep track of the current number
|
||||||
|
signal s_cnt : STD_LOGIC_VECTOR(3 downto 0) := "0000";
|
||||||
|
begin
|
||||||
|
|
||||||
|
-- Main counting logic
|
||||||
|
process(CLK)
|
||||||
|
begin
|
||||||
|
if rising_edge(CLK) then
|
||||||
|
if RST = '1' then
|
||||||
|
s_cnt <= "0000";
|
||||||
|
elsif CE = '1' then
|
||||||
|
if s_cnt = "1001" then -- If we are at 9
|
||||||
|
s_cnt <= "0000"; -- Reset to 0
|
||||||
|
else
|
||||||
|
s_cnt <= s_cnt + 1; -- Increment
|
||||||
|
end if;
|
||||||
|
end if;
|
||||||
|
end if;
|
||||||
|
end process;
|
||||||
|
|
||||||
|
|
||||||
|
-- Terminal Count logic (The red line connection)
|
||||||
|
-- TC is '1' ONLY when we are at 9 AND the enable pulse is active.
|
||||||
|
-- This ensures the next counter only moves once per rollover.
|
||||||
|
-- TC <= '1' when (s_cnt = "1001" and CE = '1') else '0'; / TODO
|
||||||
|
|
||||||
|
-- Drive the output ports
|
||||||
|
COUNT_OUT <= s_cnt;
|
||||||
|
|
||||||
|
end Behavioral;
|
||||||
55
project_6/project_6.srcs/sources_1/new/counter_2bit.vhd
Normal file
55
project_6/project_6.srcs/sources_1/new/counter_2bit.vhd
Normal file
@@ -0,0 +1,55 @@
|
|||||||
|
----------------------------------------------------------------------------------
|
||||||
|
-- Company:
|
||||||
|
-- Engineer:
|
||||||
|
--
|
||||||
|
-- Create Date: 09.03.2026 15:32:13
|
||||||
|
-- Design Name:
|
||||||
|
-- Module Name: counter_2bit - Behavioral
|
||||||
|
-- Project Name:
|
||||||
|
-- Target Devices:
|
||||||
|
-- Tool Versions:
|
||||||
|
-- Description:
|
||||||
|
--
|
||||||
|
-- Dependencies:
|
||||||
|
--
|
||||||
|
-- Revision:
|
||||||
|
-- Revision 0.01 - File Created
|
||||||
|
-- Additional Comments:
|
||||||
|
--
|
||||||
|
----------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
library IEEE;
|
||||||
|
use IEEE.STD_LOGIC_1164.ALL;
|
||||||
|
use IEEE.STD_LOGIC_UNSIGNED.ALL;
|
||||||
|
|
||||||
|
-- Uncomment the following library declaration if using
|
||||||
|
-- arithmetic functions with Signed or Unsigned values
|
||||||
|
--use IEEE.NUMERIC_STD.ALL;
|
||||||
|
|
||||||
|
-- Uncomment the following library declaration if instantiating
|
||||||
|
-- any Xilinx leaf cells in this code.
|
||||||
|
--library UNISIM;
|
||||||
|
--use UNISIM.VComponents.all;
|
||||||
|
|
||||||
|
entity counter_2bit is
|
||||||
|
Port ( CLK : in STD_LOGIC;
|
||||||
|
RST : in STD_LOGIC;
|
||||||
|
COUNT_OUT : out STD_LOGIC_VECTOR (1 downto 0));
|
||||||
|
end counter_2bit;
|
||||||
|
|
||||||
|
architecture Behavioral of counter_2bit is
|
||||||
|
|
||||||
|
signal s_cnt : STD_LOGIC_VECTOR(1 downto 0) := "00";
|
||||||
|
begin
|
||||||
|
process(CLK, RST)
|
||||||
|
begin
|
||||||
|
if RST = '1' then
|
||||||
|
s_cnt <= "00";
|
||||||
|
elsif rising_edge(CLK) then
|
||||||
|
s_cnt <= s_cnt + 1;
|
||||||
|
end if;
|
||||||
|
end process;
|
||||||
|
COUNT_OUT <= s_cnt;
|
||||||
|
|
||||||
|
end Behavioral;
|
||||||
58
project_6/project_6.srcs/sources_1/new/dec2.vhd
Normal file
58
project_6/project_6.srcs/sources_1/new/dec2.vhd
Normal file
@@ -0,0 +1,58 @@
|
|||||||
|
----------------------------------------------------------------------------------
|
||||||
|
-- Company:
|
||||||
|
-- Engineer:
|
||||||
|
--
|
||||||
|
-- Create Date: 09.03.2026 15:54:24
|
||||||
|
-- Design Name:
|
||||||
|
-- Module Name: dec_seg - Behavioral
|
||||||
|
-- Project Name:
|
||||||
|
-- Target Devices:
|
||||||
|
-- Tool Versions:
|
||||||
|
-- Description:
|
||||||
|
--
|
||||||
|
-- Dependencies:
|
||||||
|
--
|
||||||
|
-- Revision:
|
||||||
|
-- Revision 0.01 - File Created
|
||||||
|
-- Additional Comments:
|
||||||
|
--
|
||||||
|
----------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
library IEEE;
|
||||||
|
use IEEE.STD_LOGIC_1164.ALL;
|
||||||
|
|
||||||
|
-- Uncomment the following library declaration if using
|
||||||
|
-- arithmetic functions with Signed or Unsigned values
|
||||||
|
--use IEEE.NUMERIC_STD.ALL;
|
||||||
|
|
||||||
|
-- Uncomment the following library declaration if instantiating
|
||||||
|
-- any Xilinx leaf cells in this code.
|
||||||
|
--library UNISIM;
|
||||||
|
--use UNISIM.VComponents.all;
|
||||||
|
|
||||||
|
entity dec_seg is
|
||||||
|
Port ( BCD : in STD_LOGIC_VECTOR (3 downto 0);
|
||||||
|
SEG : out STD_LOGIC_VECTOR (7 downto 0));
|
||||||
|
end dec_seg;
|
||||||
|
|
||||||
|
architecture Behavioral of dec_seg is
|
||||||
|
|
||||||
|
begin
|
||||||
|
-- Konverzia BCD na 7-segment (ABCDEFG + DP)
|
||||||
|
-- Form<72>t: "ABCDEFG DP"
|
||||||
|
|
||||||
|
with bcd select
|
||||||
|
seg <= "11000000" when "0000", -- 0
|
||||||
|
"11111001" when "0001", -- 1
|
||||||
|
"10100100" when "0010", -- 2
|
||||||
|
"10110000" when "0011", -- 3
|
||||||
|
"10011001" when "0100", -- 4
|
||||||
|
"10010010" when "0101", -- 5
|
||||||
|
"10000010" when "0110", -- 6
|
||||||
|
"11111000" when "0111", -- 7
|
||||||
|
"10000000" when "1000", -- 8
|
||||||
|
"10010000" when "1001", -- 9
|
||||||
|
"11111111" when others; -- off
|
||||||
|
|
||||||
|
end Behavioral;
|
||||||
50
project_6/project_6.srcs/sources_1/new/decoder_bottom.vhd
Normal file
50
project_6/project_6.srcs/sources_1/new/decoder_bottom.vhd
Normal file
@@ -0,0 +1,50 @@
|
|||||||
|
----------------------------------------------------------------------------------
|
||||||
|
-- Company:
|
||||||
|
-- Engineer:
|
||||||
|
--
|
||||||
|
-- Create Date: 09.03.2026 15:39:11
|
||||||
|
-- Design Name:
|
||||||
|
-- Module Name: decoder_bottom - Behavioral
|
||||||
|
-- Project Name:
|
||||||
|
-- Target Devices:
|
||||||
|
-- Tool Versions:
|
||||||
|
-- Description:
|
||||||
|
--
|
||||||
|
-- Dependencies:
|
||||||
|
--
|
||||||
|
-- Revision:
|
||||||
|
-- Revision 0.01 - File Created
|
||||||
|
-- Additional Comments:
|
||||||
|
--
|
||||||
|
----------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
library IEEE;
|
||||||
|
use IEEE.STD_LOGIC_1164.ALL;
|
||||||
|
use IEEE.STD_LOGIC_UNSIGNED.ALL;
|
||||||
|
|
||||||
|
-- Uncomment the following library declaration if using
|
||||||
|
-- arithmetic functions with Signed or Unsigned values
|
||||||
|
--use IEEE.NUMERIC_STD.ALL;
|
||||||
|
|
||||||
|
-- Uncomment the following library declaration if instantiating
|
||||||
|
-- any Xilinx leaf cells in this code.
|
||||||
|
--library UNISIM;
|
||||||
|
--use UNISIM.VComponents.all;
|
||||||
|
|
||||||
|
entity decoder_an is
|
||||||
|
Port ( SEL : in STD_LOGIC_VECTOR (1 downto 0);
|
||||||
|
ANODES : out STD_LOGIC_VECTOR (3 downto 0));
|
||||||
|
end decoder_an;
|
||||||
|
|
||||||
|
architecture Behavioral of decoder_an is
|
||||||
|
|
||||||
|
begin
|
||||||
|
with SEL select
|
||||||
|
ANODES <= "1110" when "00",
|
||||||
|
"1101" when "01",
|
||||||
|
"1011" when "10",
|
||||||
|
"0111" when "11",
|
||||||
|
"1111" when others;
|
||||||
|
|
||||||
|
end Behavioral;
|
||||||
60
project_6/project_6.srcs/sources_1/new/divider.vhd
Normal file
60
project_6/project_6.srcs/sources_1/new/divider.vhd
Normal file
@@ -0,0 +1,60 @@
|
|||||||
|
----------------------------------------------------------------------------------
|
||||||
|
-- Company:
|
||||||
|
-- Engineer:
|
||||||
|
--
|
||||||
|
-- Create Date: 09.03.2026 14:43:21
|
||||||
|
-- Design Name:
|
||||||
|
-- Module Name: divider - Behavioral
|
||||||
|
-- Project Name:
|
||||||
|
-- Target Devices:
|
||||||
|
-- Tool Versions:
|
||||||
|
-- Description:
|
||||||
|
--
|
||||||
|
-- Dependencies:
|
||||||
|
--
|
||||||
|
-- Revision:
|
||||||
|
-- Revision 0.01 - File Created
|
||||||
|
-- Additional Comments:
|
||||||
|
--
|
||||||
|
----------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
library IEEE;
|
||||||
|
use IEEE.STD_LOGIC_1164.ALL;
|
||||||
|
use IEEE.STD_LOGIC_UNSIGNED.ALL;
|
||||||
|
|
||||||
|
-- Uncomment the following library declaration if using
|
||||||
|
-- arithmetic functions with Signed or Unsigned values
|
||||||
|
--use IEEE.NUMERIC_STD.ALL;
|
||||||
|
|
||||||
|
-- Uncomment the following library declaration if instantiating
|
||||||
|
-- any Xilinx leaf cells in this code.
|
||||||
|
--library UNISIM;
|
||||||
|
--use UNISIM.VComponents.all;
|
||||||
|
|
||||||
|
entity divider is
|
||||||
|
Port ( CLK : in STD_LOGIC;
|
||||||
|
RST : in STD_LOGIC;
|
||||||
|
CLK_1_Hz : out STD_LOGIC);
|
||||||
|
end divider;
|
||||||
|
|
||||||
|
architecture Behavioral of divider is
|
||||||
|
-- 27 bits is enough for 100 million
|
||||||
|
signal s_cnt : STD_LOGIC_VECTOR(26 downto 0) := (others => '0');
|
||||||
|
begin
|
||||||
|
process(CLK)
|
||||||
|
begin
|
||||||
|
if rising_edge(CLK) then
|
||||||
|
if RST = '1' then
|
||||||
|
s_cnt <= (others => '0');
|
||||||
|
CLK_1_Hz <= '0';
|
||||||
|
elsif s_cnt = 99_999_999 then
|
||||||
|
s_cnt <= (others => '0');
|
||||||
|
CLK_1_Hz <= '1'; -- The pulse
|
||||||
|
else
|
||||||
|
s_cnt <= s_cnt + 1;
|
||||||
|
CLK_1_Hz <= '0';
|
||||||
|
end if;
|
||||||
|
end if;
|
||||||
|
end process;
|
||||||
|
end Behavioral;
|
||||||
60
project_6/project_6.srcs/sources_1/new/divider_400Hz.vhd
Normal file
60
project_6/project_6.srcs/sources_1/new/divider_400Hz.vhd
Normal file
@@ -0,0 +1,60 @@
|
|||||||
|
----------------------------------------------------------------------------------
|
||||||
|
-- Company:
|
||||||
|
-- Engineer:
|
||||||
|
--
|
||||||
|
-- Create Date: 09.03.2026 14:49:47
|
||||||
|
-- Design Name:
|
||||||
|
-- Module Name: divider_400Hz - Behavioral
|
||||||
|
-- Project Name:
|
||||||
|
-- Target Devices:
|
||||||
|
-- Tool Versions:
|
||||||
|
-- Description:
|
||||||
|
--
|
||||||
|
-- Dependencies:
|
||||||
|
--
|
||||||
|
-- Revision:
|
||||||
|
-- Revision 0.01 - File Created
|
||||||
|
-- Additional Comments:
|
||||||
|
--
|
||||||
|
----------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
library IEEE;
|
||||||
|
use IEEE.STD_LOGIC_1164.ALL;
|
||||||
|
use IEEE.STD_LOGIC_UNSIGNED.ALL;
|
||||||
|
|
||||||
|
-- Uncomment the following library declaration if using
|
||||||
|
-- arithmetic functions with Signed or Unsigned values
|
||||||
|
--use IEEE.NUMERIC_STD.ALL;
|
||||||
|
|
||||||
|
-- Uncomment the following library declaration if instantiating
|
||||||
|
-- any Xilinx leaf cells in this code.
|
||||||
|
--library UNISIM;
|
||||||
|
--use UNISIM.VComponents.all;
|
||||||
|
|
||||||
|
entity divider_400Hz is
|
||||||
|
Port ( CLK : in STD_LOGIC;
|
||||||
|
RST : in STD_LOGIC;
|
||||||
|
CLK_400_Hz : out STD_LOGIC);
|
||||||
|
end divider_400Hz;
|
||||||
|
|
||||||
|
architecture Behavioral of divider_400Hz is
|
||||||
|
-- 18 bits is enough for 250,000
|
||||||
|
signal s_cnt : STD_LOGIC_VECTOR(17 downto 0) := (others => '0');
|
||||||
|
begin
|
||||||
|
process(CLK)
|
||||||
|
begin
|
||||||
|
if rising_edge(CLK) then
|
||||||
|
if RST = '1' then
|
||||||
|
s_cnt <= (others => '0');
|
||||||
|
CLK_400_Hz <= '0';
|
||||||
|
elsif s_cnt = 249_999 then
|
||||||
|
s_cnt <= (others => '0');
|
||||||
|
CLK_400_Hz <= '1';
|
||||||
|
else
|
||||||
|
s_cnt <= s_cnt + 1;
|
||||||
|
CLK_400_Hz <= '0';
|
||||||
|
end if;
|
||||||
|
end if;
|
||||||
|
end process;
|
||||||
|
end Behavioral;
|
||||||
53
project_6/project_6.srcs/sources_1/new/mux.vhd
Normal file
53
project_6/project_6.srcs/sources_1/new/mux.vhd
Normal file
@@ -0,0 +1,53 @@
|
|||||||
|
----------------------------------------------------------------------------------
|
||||||
|
-- Company:
|
||||||
|
-- Engineer:
|
||||||
|
--
|
||||||
|
-- Create Date: 09.03.2026 15:47:51
|
||||||
|
-- Design Name:
|
||||||
|
-- Module Name: mux - Behavioral
|
||||||
|
-- Project Name:
|
||||||
|
-- Target Devices:
|
||||||
|
-- Tool Versions:
|
||||||
|
-- Description:
|
||||||
|
--
|
||||||
|
-- Dependencies:
|
||||||
|
--
|
||||||
|
-- Revision:
|
||||||
|
-- Revision 0.01 - File Created
|
||||||
|
-- Additional Comments:
|
||||||
|
--
|
||||||
|
----------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
library IEEE;
|
||||||
|
use IEEE.STD_LOGIC_1164.ALL;
|
||||||
|
|
||||||
|
-- Uncomment the following library declaration if using
|
||||||
|
-- arithmetic functions with Signed or Unsigned values
|
||||||
|
--use IEEE.NUMERIC_STD.ALL;
|
||||||
|
|
||||||
|
-- Uncomment the following library declaration if instantiating
|
||||||
|
-- any Xilinx leaf cells in this code.
|
||||||
|
--library UNISIM;
|
||||||
|
--use UNISIM.VComponents.all;
|
||||||
|
|
||||||
|
entity mux is
|
||||||
|
Port ( I0 : in STD_LOGIC_VECTOR (3 downto 0);
|
||||||
|
I1 : in STD_LOGIC_VECTOR (3 downto 0);
|
||||||
|
I2 : in STD_LOGIC_VECTOR (3 downto 0);
|
||||||
|
I3 : in STD_LOGIC_VECTOR (3 downto 0);
|
||||||
|
S : in STD_LOGIC_VECTOR (1 downto 0);
|
||||||
|
Y : out STD_LOGIC_VECTOR (3 downto 0));
|
||||||
|
end mux;
|
||||||
|
|
||||||
|
architecture Behavioral of mux is
|
||||||
|
|
||||||
|
begin
|
||||||
|
with S select
|
||||||
|
Y <= I0 when "00",
|
||||||
|
I1 when "01",
|
||||||
|
I2 when "10",
|
||||||
|
I3 when "11",
|
||||||
|
"0000" when others;
|
||||||
|
|
||||||
|
end Behavioral;
|
||||||
190
project_6/project_6.srcs/sources_1/new/top_modul.vhd
Normal file
190
project_6/project_6.srcs/sources_1/new/top_modul.vhd
Normal file
@@ -0,0 +1,190 @@
|
|||||||
|
----------------------------------------------------------------------------------
|
||||||
|
-- Company:
|
||||||
|
-- Engineer:
|
||||||
|
--
|
||||||
|
-- Create Date: 09.03.2026 14:40:14
|
||||||
|
-- Design Name:
|
||||||
|
-- Module Name: top_modul - Behavioral
|
||||||
|
-- Project Name:
|
||||||
|
-- Target Devices:
|
||||||
|
-- Tool Versions:
|
||||||
|
-- Description:
|
||||||
|
--
|
||||||
|
-- Dependencies:
|
||||||
|
--
|
||||||
|
-- Revision:
|
||||||
|
-- Revision 0.01 - File Created
|
||||||
|
-- Additional Comments:
|
||||||
|
--
|
||||||
|
----------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
library IEEE;
|
||||||
|
use IEEE.STD_LOGIC_1164.ALL;
|
||||||
|
|
||||||
|
-- Uncomment the following library declaration if using
|
||||||
|
-- arithmetic functions with Signed or Unsigned values
|
||||||
|
--use IEEE.NUMERIC_STD.ALL;
|
||||||
|
|
||||||
|
-- Uncomment the following library declaration if instantiating
|
||||||
|
-- any Xilinx leaf cells in this code.
|
||||||
|
--library UNISIM;
|
||||||
|
--use UNISIM.VComponents.all;
|
||||||
|
|
||||||
|
entity top_modul is
|
||||||
|
Port ( CLK : in STD_LOGIC;
|
||||||
|
RST : in STD_LOGIC;
|
||||||
|
START : in STD_LOGIC;
|
||||||
|
SEGMENTS : out STD_LOGIC_VECTOR (7 downto 0);
|
||||||
|
ANODS : out STD_LOGIC_VECTOR (3 downto 0));
|
||||||
|
end top_modul;
|
||||||
|
|
||||||
|
architecture Behavioral of top_modul is
|
||||||
|
|
||||||
|
component divider is
|
||||||
|
Port ( CLK : in STD_LOGIC;
|
||||||
|
RST : in STD_LOGIC;
|
||||||
|
CLK_1_Hz : out STD_LOGIC); -- This will be our enable pulse
|
||||||
|
end component;
|
||||||
|
|
||||||
|
component divider_400Hz is
|
||||||
|
Port ( CLK : in STD_LOGIC;
|
||||||
|
RST : in STD_LOGIC;
|
||||||
|
CLK_400_Hz : out STD_LOGIC); -- This will be our enable pulse
|
||||||
|
end component;
|
||||||
|
|
||||||
|
component counter is
|
||||||
|
Port ( CLK : in STD_LOGIC;
|
||||||
|
RST : in STD_LOGIC;
|
||||||
|
CE : in STD_LOGIC;
|
||||||
|
TC : out STD_LOGIC;
|
||||||
|
COUNT_OUT : out STD_LOGIC_VECTOR (3 downto 0));
|
||||||
|
end component;
|
||||||
|
|
||||||
|
component counter_2bit is
|
||||||
|
Port ( CLK : in STD_LOGIC;
|
||||||
|
RST : in STD_LOGIC;
|
||||||
|
COUNT_OUT : out STD_LOGIC_VECTOR (1 downto 0));
|
||||||
|
end component;
|
||||||
|
|
||||||
|
component decoder_an is
|
||||||
|
Port ( SEL : in STD_LOGIC_VECTOR (1 downto 0);
|
||||||
|
ANODES : out STD_LOGIC_VECTOR (3 downto 0));
|
||||||
|
end component;
|
||||||
|
|
||||||
|
component mux is
|
||||||
|
Port ( I0 : in STD_LOGIC_VECTOR (3 downto 0);
|
||||||
|
I1 : in STD_LOGIC_VECTOR (3 downto 0);
|
||||||
|
I2 : in STD_LOGIC_VECTOR (3 downto 0);
|
||||||
|
I3 : in STD_LOGIC_VECTOR (3 downto 0);
|
||||||
|
S : in STD_LOGIC_VECTOR (1 downto 0);
|
||||||
|
Y : out STD_LOGIC_VECTOR (3 downto 0));
|
||||||
|
end component;
|
||||||
|
|
||||||
|
component dec_seg is
|
||||||
|
Port ( bcd : in STD_LOGIC_VECTOR (3 downto 0);
|
||||||
|
seg : out STD_LOGIC_VECTOR (7 downto 0));
|
||||||
|
end component;
|
||||||
|
|
||||||
|
signal clk_1_Hz : std_logic;
|
||||||
|
signal clk_400_Hz : std_logic;
|
||||||
|
|
||||||
|
signal s_ce_units : std_logic;
|
||||||
|
signal s_tc_units : std_logic; -- Wire connecting Top TC to Bottom CE
|
||||||
|
signal s_tc_tens : std_logic;
|
||||||
|
signal s_tc_hundreds : std_logic;
|
||||||
|
signal s_cnt_units : std_logic_vector(3 downto 0); -- To MUX I0
|
||||||
|
signal s_cnt_tens : std_logic_vector(3 downto 0); -- To MUX I1
|
||||||
|
signal s_cnt_hundreds : std_logic_vector(3 downto 0);
|
||||||
|
signal s_cnt_thousands: std_logic_vector(3 downto 0);
|
||||||
|
|
||||||
|
signal s_cnt_2bit : std_logic_vector(1 downto 0);
|
||||||
|
|
||||||
|
signal s_mux_out : std_logic_vector(3 downto 0);
|
||||||
|
|
||||||
|
begin
|
||||||
|
|
||||||
|
U_DIV : divider
|
||||||
|
port map (
|
||||||
|
CLK => CLK,
|
||||||
|
RST => RST,
|
||||||
|
CLK_1_Hz => clk_1_Hz
|
||||||
|
);
|
||||||
|
|
||||||
|
|
||||||
|
U_DIV_400Hz : divider_400Hz
|
||||||
|
port map (
|
||||||
|
CLK => CLK,
|
||||||
|
RST => RST,
|
||||||
|
CLK_400_Hz => clk_400_Hz
|
||||||
|
);
|
||||||
|
|
||||||
|
s_ce_units <= clk_1_Hz and START;
|
||||||
|
-- TOP COUNTER (Units)
|
||||||
|
U_CNT_TOP : counter
|
||||||
|
port map (
|
||||||
|
CLK => CLK,
|
||||||
|
RST => RST,
|
||||||
|
CE => s_ce_units,
|
||||||
|
TC => s_tc_units,
|
||||||
|
COUNT_OUT => s_cnt_units
|
||||||
|
);
|
||||||
|
|
||||||
|
-- BOTTOM COUNTER (Tens)
|
||||||
|
U_CNT_BOTTOM : counter
|
||||||
|
port map (
|
||||||
|
CLK => CLK,
|
||||||
|
RST => RST,
|
||||||
|
CE => s_tc_units, -- Increments only when top counter hits 9
|
||||||
|
TC => s_tc_tens,
|
||||||
|
COUNT_OUT => s_cnt_tens
|
||||||
|
);
|
||||||
|
-- 3 COUNTER (Stovky)
|
||||||
|
U_CNT_3 : counter
|
||||||
|
port map (
|
||||||
|
CLK => CLK,
|
||||||
|
RST => RST,
|
||||||
|
CE => s_tc_tens and s_tc_units,
|
||||||
|
TC => s_tc_hundreds,
|
||||||
|
COUNT_OUT => s_cnt_hundreds
|
||||||
|
);
|
||||||
|
-- 4 COUNTER (Tisicky)
|
||||||
|
U_CNT_4 : counter
|
||||||
|
port map (
|
||||||
|
CLK => CLK,
|
||||||
|
RST => RST,
|
||||||
|
CE => s_tc_tens and s_tc_units and s_tc_hundreds,
|
||||||
|
TC => open, -- Free TC
|
||||||
|
COUNT_OUT => s_cnt_thousands
|
||||||
|
);
|
||||||
|
|
||||||
|
U_CNT_2BIT : counter_2bit
|
||||||
|
port map (
|
||||||
|
CLK => clk_400_Hz,
|
||||||
|
RST => RST,
|
||||||
|
COUNT_OUT => s_cnt_2bit
|
||||||
|
);
|
||||||
|
|
||||||
|
U_DEC_ANODES : decoder_an
|
||||||
|
port map (
|
||||||
|
SEL => s_cnt_2bit, -- 2-bitov<6F> sign<67>l
|
||||||
|
ANODES => ANODS -- V<>stupn<70> port top modulu
|
||||||
|
);
|
||||||
|
|
||||||
|
U_MUX : mux
|
||||||
|
port map (
|
||||||
|
I0 => s_cnt_units, -- V<>stup z prv<72>ho <20><>ta<74>a
|
||||||
|
I1 => s_cnt_tens, -- V<>stup z druh<75>ho <20><>ta<74>a
|
||||||
|
I2 => s_cnt_hundreds,
|
||||||
|
I3 => s_cnt_thousands,
|
||||||
|
S => s_cnt_2bit, -- Sign<67>l zo zelen<65>ho <20><>ta<74>a (v<>ber an<61>dy)
|
||||||
|
Y => s_mux_out -- Vybran<61> <20><>slica pre segmenty
|
||||||
|
);
|
||||||
|
|
||||||
|
U_DEC_SEG : dec_seg
|
||||||
|
port map (
|
||||||
|
BCD => s_mux_out, -- <20><>slica vybran<61> multiplexerom
|
||||||
|
SEG => SEGMENTS -- V<>stupn<70> port top modulu (8 bitov)
|
||||||
|
);
|
||||||
|
|
||||||
|
end Behavioral;
|
||||||
BIN
project_6/zadanie.jpg
Normal file
BIN
project_6/zadanie.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1.2 MiB |
@@ -0,0 +1,164 @@
|
|||||||
|
## This file is a general .xdc for the Basys3 rev B board
|
||||||
|
## To use it in a project:
|
||||||
|
## - uncomment the lines corresponding to used pins
|
||||||
|
## - rename the used ports (in each line, after get_ports) according to the top level signal names in the project
|
||||||
|
|
||||||
|
## Clock signal
|
||||||
|
set_property -dict { PACKAGE_PIN W5 IOSTANDARD LVCMOS33 } [get_ports CLK]
|
||||||
|
create_clock -add -name sys_clk_pin -period 10.00 -waveform {0 5} [get_ports CLK]
|
||||||
|
|
||||||
|
|
||||||
|
## Switches
|
||||||
|
set_property -dict { PACKAGE_PIN V17 IOSTANDARD LVCMOS33 } [get_ports {RST}]
|
||||||
|
set_property -dict { PACKAGE_PIN V16 IOSTANDARD LVCMOS33 } [get_ports {START}]
|
||||||
|
|
||||||
|
set_property -dict { PACKAGE_PIN W16 IOSTANDARD LVCMOS33 } [get_ports {SW_MODE}]
|
||||||
|
#set_property -dict { PACKAGE_PIN W17 IOSTANDARD LVCMOS33 } [get_ports {sw[3]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN W15 IOSTANDARD LVCMOS33 } [get_ports {sw[4]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN V15 IOSTANDARD LVCMOS33 } [get_ports {sw[5]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN W14 IOSTANDARD LVCMOS33 } [get_ports {sw[6]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN W13 IOSTANDARD LVCMOS33 } [get_ports {sw[7]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN V2 IOSTANDARD LVCMOS33 } [get_ports {sw[8]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN T3 IOSTANDARD LVCMOS33 } [get_ports {sw[9]}]
|
||||||
|
set_property -dict { PACKAGE_PIN T2 IOSTANDARD LVCMOS33 } [get_ports {RST_B}]
|
||||||
|
# Budik
|
||||||
|
set_property -dict { PACKAGE_PIN R3 IOSTANDARD LVCMOS33 } [get_ports {SW_ALARM_SET}]
|
||||||
|
set_property -dict { PACKAGE_PIN W2 IOSTANDARD LVCMOS33 } [get_ports {SW_DIN[0]}]
|
||||||
|
set_property -dict { PACKAGE_PIN U1 IOSTANDARD LVCMOS33 } [get_ports {SW_DIN[1]}]
|
||||||
|
set_property -dict { PACKAGE_PIN T1 IOSTANDARD LVCMOS33 } [get_ports {SW_DIN[2]}]
|
||||||
|
set_property -dict { PACKAGE_PIN R2 IOSTANDARD LVCMOS33 } [get_ports {SW_DIN[3]}]
|
||||||
|
|
||||||
|
|
||||||
|
## LEDs
|
||||||
|
set_property -dict { PACKAGE_PIN U16 IOSTANDARD LVCMOS33 } [get_ports {ALARM_LED}]
|
||||||
|
#set_property -dict { PACKAGE_PIN E19 IOSTANDARD LVCMOS33 } [get_ports {led[1]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN U19 IOSTANDARD LVCMOS33 } [get_ports {led[2]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN V19 IOSTANDARD LVCMOS33 } [get_ports {led[3]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN W18 IOSTANDARD LVCMOS33 } [get_ports {led[4]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN U15 IOSTANDARD LVCMOS33 } [get_ports {led[5]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN U14 IOSTANDARD LVCMOS33 } [get_ports {led[6]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN V14 IOSTANDARD LVCMOS33 } [get_ports {led[7]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN V13 IOSTANDARD LVCMOS33 } [get_ports {led[8]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN V3 IOSTANDARD LVCMOS33 } [get_ports {led[9]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN W3 IOSTANDARD LVCMOS33 } [get_ports {led[10]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN U3 IOSTANDARD LVCMOS33 } [get_ports {led[11]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN P3 IOSTANDARD LVCMOS33 } [get_ports {led[12]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN N3 IOSTANDARD LVCMOS33 } [get_ports {led[13]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN P1 IOSTANDARD LVCMOS33 } [get_ports {led[14]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN L1 IOSTANDARD LVCMOS33 } [get_ports {led[15]}]
|
||||||
|
|
||||||
|
|
||||||
|
##7 Segment Display
|
||||||
|
set_property -dict { PACKAGE_PIN W7 IOSTANDARD LVCMOS33 } [get_ports {SEGMENTS[0]}]
|
||||||
|
set_property -dict { PACKAGE_PIN W6 IOSTANDARD LVCMOS33 } [get_ports {SEGMENTS[1]}]
|
||||||
|
set_property -dict { PACKAGE_PIN U8 IOSTANDARD LVCMOS33 } [get_ports {SEGMENTS[2]}]
|
||||||
|
set_property -dict { PACKAGE_PIN V8 IOSTANDARD LVCMOS33 } [get_ports {SEGMENTS[3]}]
|
||||||
|
set_property -dict { PACKAGE_PIN U5 IOSTANDARD LVCMOS33 } [get_ports {SEGMENTS[4]}]
|
||||||
|
set_property -dict { PACKAGE_PIN V5 IOSTANDARD LVCMOS33 } [get_ports {SEGMENTS[5]}]
|
||||||
|
set_property -dict { PACKAGE_PIN U7 IOSTANDARD LVCMOS33 } [get_ports {SEGMENTS[6]}]
|
||||||
|
|
||||||
|
set_property -dict { PACKAGE_PIN V7 IOSTANDARD LVCMOS33 } [get_ports {SEGMENTS[7]}]
|
||||||
|
|
||||||
|
set_property -dict { PACKAGE_PIN U2 IOSTANDARD LVCMOS33 } [get_ports {ANODS[0]}]
|
||||||
|
set_property -dict { PACKAGE_PIN U4 IOSTANDARD LVCMOS33 } [get_ports {ANODS[1]}]
|
||||||
|
set_property -dict { PACKAGE_PIN V4 IOSTANDARD LVCMOS33 } [get_ports {ANODS[2]}]
|
||||||
|
set_property -dict { PACKAGE_PIN W4 IOSTANDARD LVCMOS33 } [get_ports {ANODS[3]}]
|
||||||
|
|
||||||
|
##Buttons
|
||||||
|
#set_property -dict { PACKAGE_PIN U18 IOSTANDARD LVCMOS33 } [get_ports btnC]
|
||||||
|
# btnU -> Hours Tens
|
||||||
|
set_property -dict { PACKAGE_PIN T18 IOSTANDARD LVCMOS33 } [get_ports {BTN_LOAD[3]}]
|
||||||
|
# btnL -> Hours Units
|
||||||
|
set_property -dict { PACKAGE_PIN W19 IOSTANDARD LVCMOS33 } [get_ports {BTN_LOAD[2]}]
|
||||||
|
# btnR -> Minutes Tens
|
||||||
|
set_property -dict { PACKAGE_PIN T17 IOSTANDARD LVCMOS33 } [get_ports {BTN_LOAD[1]}]
|
||||||
|
# btnD -> Minutes Units
|
||||||
|
set_property -dict { PACKAGE_PIN U17 IOSTANDARD LVCMOS33 } [get_ports {BTN_LOAD[0]}]
|
||||||
|
|
||||||
|
|
||||||
|
##Pmod Header JA
|
||||||
|
#set_property -dict { PACKAGE_PIN J1 IOSTANDARD LVCMOS33 } [get_ports {JA[0]}];#Sch name = JA1
|
||||||
|
#set_property -dict { PACKAGE_PIN L2 IOSTANDARD LVCMOS33 } [get_ports {JA[1]}];#Sch name = JA2
|
||||||
|
#set_property -dict { PACKAGE_PIN J2 IOSTANDARD LVCMOS33 } [get_ports {JA[2]}];#Sch name = JA3
|
||||||
|
#set_property -dict { PACKAGE_PIN G2 IOSTANDARD LVCMOS33 } [get_ports {JA[3]}];#Sch name = JA4
|
||||||
|
#set_property -dict { PACKAGE_PIN H1 IOSTANDARD LVCMOS33 } [get_ports {JA[4]}];#Sch name = JA7
|
||||||
|
#set_property -dict { PACKAGE_PIN K2 IOSTANDARD LVCMOS33 } [get_ports {JA[5]}];#Sch name = JA8
|
||||||
|
#set_property -dict { PACKAGE_PIN H2 IOSTANDARD LVCMOS33 } [get_ports {JA[6]}];#Sch name = JA9
|
||||||
|
#set_property -dict { PACKAGE_PIN G3 IOSTANDARD LVCMOS33 } [get_ports {JA[7]}];#Sch name = JA10
|
||||||
|
|
||||||
|
##Pmod Header JB
|
||||||
|
#set_property -dict { PACKAGE_PIN A14 IOSTANDARD LVCMOS33 } [get_ports {JB[0]}];#Sch name = JB1
|
||||||
|
#set_property -dict { PACKAGE_PIN A16 IOSTANDARD LVCMOS33 } [get_ports {JB[1]}];#Sch name = JB2
|
||||||
|
#set_property -dict { PACKAGE_PIN B15 IOSTANDARD LVCMOS33 } [get_ports {JB[2]}];#Sch name = JB3
|
||||||
|
#set_property -dict { PACKAGE_PIN B16 IOSTANDARD LVCMOS33 } [get_ports {JB[3]}];#Sch name = JB4
|
||||||
|
#set_property -dict { PACKAGE_PIN A15 IOSTANDARD LVCMOS33 } [get_ports {JB[4]}];#Sch name = JB7
|
||||||
|
#set_property -dict { PACKAGE_PIN A17 IOSTANDARD LVCMOS33 } [get_ports {JB[5]}];#Sch name = JB8
|
||||||
|
#set_property -dict { PACKAGE_PIN C15 IOSTANDARD LVCMOS33 } [get_ports {JB[6]}];#Sch name = JB9
|
||||||
|
#set_property -dict { PACKAGE_PIN C16 IOSTANDARD LVCMOS33 } [get_ports {JB[7]}];#Sch name = JB10
|
||||||
|
|
||||||
|
##Pmod Header JC
|
||||||
|
#set_property -dict { PACKAGE_PIN K17 IOSTANDARD LVCMOS33 } [get_ports {JC[0]}];#Sch name = JC1
|
||||||
|
#set_property -dict { PACKAGE_PIN M18 IOSTANDARD LVCMOS33 } [get_ports {JC[1]}];#Sch name = JC2
|
||||||
|
#set_property -dict { PACKAGE_PIN N17 IOSTANDARD LVCMOS33 } [get_ports {JC[2]}];#Sch name = JC3
|
||||||
|
#set_property -dict { PACKAGE_PIN P18 IOSTANDARD LVCMOS33 } [get_ports {JC[3]}];#Sch name = JC4
|
||||||
|
#set_property -dict { PACKAGE_PIN L17 IOSTANDARD LVCMOS33 } [get_ports {JC[4]}];#Sch name = JC7
|
||||||
|
#set_property -dict { PACKAGE_PIN M19 IOSTANDARD LVCMOS33 } [get_ports {JC[5]}];#Sch name = JC8
|
||||||
|
#set_property -dict { PACKAGE_PIN P17 IOSTANDARD LVCMOS33 } [get_ports {JC[6]}];#Sch name = JC9
|
||||||
|
#set_property -dict { PACKAGE_PIN R18 IOSTANDARD LVCMOS33 } [get_ports {JC[7]}];#Sch name = JC10
|
||||||
|
|
||||||
|
##Pmod Header JXADC
|
||||||
|
#set_property -dict { PACKAGE_PIN J3 IOSTANDARD LVCMOS33 } [get_ports {JXADC[0]}];#Sch name = XA1_P
|
||||||
|
#set_property -dict { PACKAGE_PIN L3 IOSTANDARD LVCMOS33 } [get_ports {JXADC[1]}];#Sch name = XA2_P
|
||||||
|
#set_property -dict { PACKAGE_PIN M2 IOSTANDARD LVCMOS33 } [get_ports {JXADC[2]}];#Sch name = XA3_P
|
||||||
|
#set_property -dict { PACKAGE_PIN N2 IOSTANDARD LVCMOS33 } [get_ports {JXADC[3]}];#Sch name = XA4_P
|
||||||
|
#set_property -dict { PACKAGE_PIN K3 IOSTANDARD LVCMOS33 } [get_ports {JXADC[4]}];#Sch name = XA1_N
|
||||||
|
#set_property -dict { PACKAGE_PIN M3 IOSTANDARD LVCMOS33 } [get_ports {JXADC[5]}];#Sch name = XA2_N
|
||||||
|
#set_property -dict { PACKAGE_PIN M1 IOSTANDARD LVCMOS33 } [get_ports {JXADC[6]}];#Sch name = XA3_N
|
||||||
|
#set_property -dict { PACKAGE_PIN N1 IOSTANDARD LVCMOS33 } [get_ports {JXADC[7]}];#Sch name = XA4_N
|
||||||
|
|
||||||
|
|
||||||
|
##VGA Connector
|
||||||
|
#set_property -dict { PACKAGE_PIN G19 IOSTANDARD LVCMOS33 } [get_ports {vgaRed[0]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN H19 IOSTANDARD LVCMOS33 } [get_ports {vgaRed[1]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN J19 IOSTANDARD LVCMOS33 } [get_ports {vgaRed[2]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN N19 IOSTANDARD LVCMOS33 } [get_ports {vgaRed[3]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN N18 IOSTANDARD LVCMOS33 } [get_ports {vgaBlue[0]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN L18 IOSTANDARD LVCMOS33 } [get_ports {vgaBlue[1]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN K18 IOSTANDARD LVCMOS33 } [get_ports {vgaBlue[2]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN J18 IOSTANDARD LVCMOS33 } [get_ports {vgaBlue[3]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN J17 IOSTANDARD LVCMOS33 } [get_ports {vgaGreen[0]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN H17 IOSTANDARD LVCMOS33 } [get_ports {vgaGreen[1]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN G17 IOSTANDARD LVCMOS33 } [get_ports {vgaGreen[2]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN D17 IOSTANDARD LVCMOS33 } [get_ports {vgaGreen[3]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN P19 IOSTANDARD LVCMOS33 } [get_ports Hsync]
|
||||||
|
#set_property -dict { PACKAGE_PIN R19 IOSTANDARD LVCMOS33 } [get_ports Vsync]
|
||||||
|
|
||||||
|
|
||||||
|
##USB-RS232 Interface
|
||||||
|
#set_property -dict { PACKAGE_PIN B18 IOSTANDARD LVCMOS33 } [get_ports RsRx]
|
||||||
|
#set_property -dict { PACKAGE_PIN A18 IOSTANDARD LVCMOS33 } [get_ports RsTx]
|
||||||
|
|
||||||
|
|
||||||
|
##USB HID (PS/2)
|
||||||
|
#set_property -dict { PACKAGE_PIN C17 IOSTANDARD LVCMOS33 PULLUP true } [get_ports PS2Clk]
|
||||||
|
#set_property -dict { PACKAGE_PIN B17 IOSTANDARD LVCMOS33 PULLUP true } [get_ports PS2Data]
|
||||||
|
|
||||||
|
|
||||||
|
##Quad SPI Flash
|
||||||
|
##Note that CCLK_0 cannot be placed in 7 series devices. You can access it using the
|
||||||
|
##STARTUPE2 primitive.
|
||||||
|
#set_property -dict { PACKAGE_PIN D18 IOSTANDARD LVCMOS33 } [get_ports {QspiDB[0]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN D19 IOSTANDARD LVCMOS33 } [get_ports {QspiDB[1]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN G18 IOSTANDARD LVCMOS33 } [get_ports {QspiDB[2]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN F18 IOSTANDARD LVCMOS33 } [get_ports {QspiDB[3]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN K19 IOSTANDARD LVCMOS33 } [get_ports QspiCSn]
|
||||||
|
|
||||||
|
|
||||||
|
## Configuration options, can be used for all designs
|
||||||
|
set_property CONFIG_VOLTAGE 3.3 [current_design]
|
||||||
|
set_property CFGBVS VCCO [current_design]
|
||||||
|
|
||||||
|
## SPI configuration mode options for QSPI boot, can be used for all designs
|
||||||
|
set_property BITSTREAM.GENERAL.COMPRESS TRUE [current_design]
|
||||||
|
set_property BITSTREAM.CONFIG.CONFIGRATE 33 [current_design]
|
||||||
|
set_property CONFIG_MODE SPIx4 [current_design]
|
||||||
186
project_7/project_5.srcs/sources_1/new/clock_logic.vhd
Normal file
186
project_7/project_5.srcs/sources_1/new/clock_logic.vhd
Normal file
@@ -0,0 +1,186 @@
|
|||||||
|
-- clock_logic.vhd
|
||||||
|
|
||||||
|
|
||||||
|
library IEEE;
|
||||||
|
use IEEE.STD_LOGIC_1164.ALL;
|
||||||
|
|
||||||
|
|
||||||
|
entity clock_logic is
|
||||||
|
Port (
|
||||||
|
CLK : in STD_LOGIC;
|
||||||
|
RST : in STD_LOGIC;
|
||||||
|
CE_1HZ : in STD_LOGIC; -- Enable signal from the divider
|
||||||
|
SW_DIN : in STD_LOGIC_VECTOR (3 downto 0); -- set data on btn_load
|
||||||
|
BTN_LOAD : in STD_LOGIC_VECTOR (3 downto 0);
|
||||||
|
-- Outputs to the top module/display
|
||||||
|
S_UNITS : out STD_LOGIC_VECTOR (3 downto 0);
|
||||||
|
S_TENS : out STD_LOGIC_VECTOR (3 downto 0);
|
||||||
|
M_UNITS : out STD_LOGIC_VECTOR (3 downto 0);
|
||||||
|
M_TENS : out STD_LOGIC_VECTOR (3 downto 0);
|
||||||
|
H_UNITS : out STD_LOGIC_VECTOR (3 downto 0);
|
||||||
|
H_TENS : out STD_LOGIC_VECTOR (3 downto 0)
|
||||||
|
);
|
||||||
|
end clock_logic;
|
||||||
|
|
||||||
|
|
||||||
|
architecture Behavioral of clock_logic is
|
||||||
|
-- TODO CHECK AGAINST COUNTER.VHD IF NEEDED
|
||||||
|
component counter is
|
||||||
|
Generic ( MAX_LIMIT : STD_LOGIC_VECTOR(3 downto 0) := "1001" ); -- Default to 9
|
||||||
|
Port ( CLK : in STD_LOGIC;
|
||||||
|
CE : in STD_LOGIC;
|
||||||
|
PE : in STD_LOGIC;
|
||||||
|
DIN : in STD_LOGIC_VECTOR(3 downto 0);
|
||||||
|
RST : in STD_LOGIC;
|
||||||
|
TC : out STD_LOGIC;
|
||||||
|
COUNT_OUT : out STD_LOGIC_VECTOR (3 downto 0));
|
||||||
|
end component;
|
||||||
|
|
||||||
|
-- Internal signals to connect the counters
|
||||||
|
signal sig_s_units, sig_s_tens : std_logic_vector(3 downto 0);
|
||||||
|
signal sig_m_units, sig_m_tens : std_logic_vector(3 downto 0);
|
||||||
|
signal sig_h_units, sig_h_tens : std_logic_vector(3 downto 0);
|
||||||
|
-- Carry signals (TC)
|
||||||
|
signal tc_su, tc_st, tc_mu, tc_mt, tc_hu : std_logic;
|
||||||
|
-- Reset for hours (to handle the 24 reset)
|
||||||
|
signal hour_reset : std_logic;
|
||||||
|
|
||||||
|
-- Specific load enable signals that check for boundaries
|
||||||
|
signal load_h_tens, load_h_units : std_logic;
|
||||||
|
signal load_m_tens, load_m_units : std_logic;
|
||||||
|
|
||||||
|
-- Internal signals for the "Safe" load triggers
|
||||||
|
signal safe_load_su, safe_load_st : std_logic;
|
||||||
|
signal safe_load_mu, safe_load_mt : std_logic;
|
||||||
|
signal safe_load_hu, safe_load_ht : std_logic;
|
||||||
|
begin
|
||||||
|
-- MINUTES CONSTRAINTS (Max 59)
|
||||||
|
load_m_units <= BTN_LOAD(0) when (SW_DIN <= "1001") else '0'; -- 0-9
|
||||||
|
load_m_tens <= BTN_LOAD(1) when (SW_DIN <= "0101") else '0'; -- 0-5
|
||||||
|
-- HOURS CONSTRAINTS (Max 23)
|
||||||
|
-- Rule A: Cannot load Tens > 2.
|
||||||
|
-- Rule B: If Tens is 2, cannot load Units > 3.
|
||||||
|
-- Rule C: If Units is > 3, cannot load Tens into 2.
|
||||||
|
load_h_tens <= BTN_LOAD(3) when (
|
||||||
|
SW_DIN < "0010" or
|
||||||
|
(SW_DIN = "0010" and sig_h_units <= "0011")
|
||||||
|
) else '0';
|
||||||
|
|
||||||
|
load_h_units <= BTN_LOAD(2) when (
|
||||||
|
(sig_h_tens < "0010" and SW_DIN <= "1001") or
|
||||||
|
(sig_h_tens = "0010" and SW_DIN <= "0011")
|
||||||
|
) else '0';
|
||||||
|
|
||||||
|
-------------------------------------------------------
|
||||||
|
-- SECONDS SECTION
|
||||||
|
-- SECONDS UNITS (0-9) - Triggered by the 1Hz pulse
|
||||||
|
U_CNT_SEC_UNITS : counter
|
||||||
|
generic map ( MAX_LIMIT => "1001" ) -- do 9
|
||||||
|
port map (
|
||||||
|
CLK => CLK,
|
||||||
|
RST => RST,
|
||||||
|
CE => CE_1HZ,
|
||||||
|
PE => '0',
|
||||||
|
DIN => "0000", -- Seconds usually don't need manual load
|
||||||
|
TC => tc_su,
|
||||||
|
COUNT_OUT => sig_s_units
|
||||||
|
);
|
||||||
|
|
||||||
|
-- SECONDS TENS (0-5) - Triggered when Sec Units reach 9
|
||||||
|
U_CNT_SEC_TENS : counter
|
||||||
|
generic map ( MAX_LIMIT => "0101" ) -- do 5
|
||||||
|
port map (
|
||||||
|
CLK => CLK,
|
||||||
|
RST => RST,
|
||||||
|
CE => tc_su,
|
||||||
|
PE => '0',
|
||||||
|
DIN => "0000",
|
||||||
|
TC => tc_st,
|
||||||
|
COUNT_OUT => sig_s_tens
|
||||||
|
);
|
||||||
|
|
||||||
|
-------------------------------------------------------
|
||||||
|
-- MINUTES SECTION
|
||||||
|
|
||||||
|
-- MINUTES UNITS (0-9) - When Seconds reach 59
|
||||||
|
U_CNT_MIN_UNITS : counter
|
||||||
|
generic map ( MAX_LIMIT => "1001" ) -- do 9
|
||||||
|
port map (
|
||||||
|
CLK => CLK,
|
||||||
|
RST => RST,
|
||||||
|
CE => tc_st,
|
||||||
|
PE => load_m_units,
|
||||||
|
DIN => SW_DIN,
|
||||||
|
TC => tc_mu,
|
||||||
|
COUNT_OUT => sig_m_units
|
||||||
|
);
|
||||||
|
|
||||||
|
-- MINUTES TENS (0-5)
|
||||||
|
U_CNT_MIN_TENS : counter
|
||||||
|
generic map ( MAX_LIMIT => "0101" ) -- do 5
|
||||||
|
port map (
|
||||||
|
CLK => CLK,
|
||||||
|
RST => RST,
|
||||||
|
CE => tc_mu,
|
||||||
|
PE => load_m_tens,
|
||||||
|
DIN => SW_DIN,
|
||||||
|
TC => tc_mt,
|
||||||
|
COUNT_OUT => sig_m_tens
|
||||||
|
);
|
||||||
|
|
||||||
|
-------------------------------------------------------
|
||||||
|
-- HOURS SECTION
|
||||||
|
-- If we are at 23:59:59, the next tick should reset hours
|
||||||
|
process(sig_h_tens, sig_h_units, tc_mt, RST)
|
||||||
|
begin
|
||||||
|
if RST = '1' then
|
||||||
|
hour_reset <= '1';
|
||||||
|
-- TICK: If clock is at 23:59:59 and the minutes tick over
|
||||||
|
elsif (sig_h_tens = "0010" and sig_h_units = "0011" and tc_mt = '1') then
|
||||||
|
hour_reset <= '1';
|
||||||
|
-- LOAD PROTECTION: If current value is 24:XX or higher
|
||||||
|
-- This part works even if tc_mt is '0' (for the alarm)
|
||||||
|
elsif (sig_h_tens = "0010" and sig_h_units >= "0100") then
|
||||||
|
hour_reset <= '1';
|
||||||
|
elsif (sig_h_tens > "0010") then
|
||||||
|
hour_reset <= '1';
|
||||||
|
else
|
||||||
|
hour_reset <= '0';
|
||||||
|
end if;
|
||||||
|
end process;
|
||||||
|
|
||||||
|
-- HOURS UNITS (0-9)
|
||||||
|
U_CNT_HOR_UNITS : counter
|
||||||
|
generic map ( MAX_LIMIT => "1001" ) -- To 9
|
||||||
|
port map (
|
||||||
|
CLK => CLK,
|
||||||
|
RST => hour_reset,
|
||||||
|
CE => tc_mt,
|
||||||
|
PE => load_h_units,
|
||||||
|
DIN => SW_DIN,
|
||||||
|
TC => tc_hu,
|
||||||
|
COUNT_OUT => sig_h_units
|
||||||
|
);
|
||||||
|
|
||||||
|
-- HOURS TENS (0-2)
|
||||||
|
U_CNT_HOR_TENS : counter
|
||||||
|
generic map ( MAX_LIMIT => "0010" ) -- To 2
|
||||||
|
port map (
|
||||||
|
CLK => CLK,
|
||||||
|
RST => hour_reset,
|
||||||
|
CE => tc_hu,
|
||||||
|
PE => load_h_tens,
|
||||||
|
DIN => SW_DIN,
|
||||||
|
TC => open,
|
||||||
|
COUNT_OUT => sig_h_tens
|
||||||
|
);
|
||||||
|
|
||||||
|
|
||||||
|
-- Drive output ports
|
||||||
|
S_UNITS <= sig_s_units;
|
||||||
|
S_TENS <= sig_s_tens;
|
||||||
|
M_UNITS <= sig_m_units;
|
||||||
|
M_TENS <= sig_m_tens;
|
||||||
|
H_UNITS <= sig_h_units;
|
||||||
|
H_TENS <= sig_h_tens;
|
||||||
|
end Behavioral;
|
||||||
46
project_7/project_5.srcs/sources_1/new/counter.vhd
Normal file
46
project_7/project_5.srcs/sources_1/new/counter.vhd
Normal file
@@ -0,0 +1,46 @@
|
|||||||
|
-- project_7/project_5.srcs/sources_1/new/counter.vhd
|
||||||
|
|
||||||
|
library IEEE;
|
||||||
|
use IEEE.STD_LOGIC_1164.ALL;
|
||||||
|
use IEEE.STD_LOGIC_UNSIGNED.ALL;
|
||||||
|
|
||||||
|
entity counter is
|
||||||
|
Generic ( MAX_LIMIT : STD_LOGIC_VECTOR(3 downto 0) := "1001" ); -- Default to 9
|
||||||
|
Port ( CLK : in STD_LOGIC;
|
||||||
|
RST : in STD_LOGIC;
|
||||||
|
CE : in STD_LOGIC;
|
||||||
|
PE : in STD_LOGIC;
|
||||||
|
DIN : in STD_LOGIC_VECTOR(3 downto 0);
|
||||||
|
TC : out STD_LOGIC;
|
||||||
|
COUNT_OUT : out STD_LOGIC_VECTOR (3 downto 0));
|
||||||
|
end counter;
|
||||||
|
|
||||||
|
architecture Behavioral of counter is
|
||||||
|
-- Internal signal to keep track of the current number
|
||||||
|
signal s_cnt : STD_LOGIC_VECTOR(3 downto 0) := (others => '0');
|
||||||
|
-- (others => '0') je to iste ako "0000" pre 4 bity. Ale narozdiel od hardcode
|
||||||
|
-- robi nuly cez vsetky bity, takze zalezi na pocte bitov rodica
|
||||||
|
begin
|
||||||
|
|
||||||
|
-- Main counting logic
|
||||||
|
process(CLK)
|
||||||
|
begin
|
||||||
|
if rising_edge(CLK) then
|
||||||
|
if RST = '1' then
|
||||||
|
s_cnt <= "0000";
|
||||||
|
elsif PE = '1' then
|
||||||
|
s_cnt <= DIN;
|
||||||
|
elsif CE = '1' then
|
||||||
|
if s_cnt = MAX_LIMIT then
|
||||||
|
s_cnt <= (others => '0'); -- Reset to 0 when limit is hit
|
||||||
|
else
|
||||||
|
s_cnt <= s_cnt + 1; -- Otherwise increment
|
||||||
|
end if;
|
||||||
|
end if;
|
||||||
|
end if;
|
||||||
|
end process;
|
||||||
|
TC <= '1' when (s_cnt = MAX_LIMIT and CE = '1') else '0';
|
||||||
|
|
||||||
|
COUNT_OUT <= s_cnt;
|
||||||
|
|
||||||
|
end Behavioral;
|
||||||
55
project_7/project_5.srcs/sources_1/new/counter_2bit.vhd
Normal file
55
project_7/project_5.srcs/sources_1/new/counter_2bit.vhd
Normal file
@@ -0,0 +1,55 @@
|
|||||||
|
----------------------------------------------------------------------------------
|
||||||
|
-- Company:
|
||||||
|
-- Engineer:
|
||||||
|
--
|
||||||
|
-- Create Date: 09.03.2026 15:32:13
|
||||||
|
-- Design Name:
|
||||||
|
-- Module Name: counter_2bit - Behavioral
|
||||||
|
-- Project Name:
|
||||||
|
-- Target Devices:
|
||||||
|
-- Tool Versions:
|
||||||
|
-- Description:
|
||||||
|
--
|
||||||
|
-- Dependencies:
|
||||||
|
--
|
||||||
|
-- Revision:
|
||||||
|
-- Revision 0.01 - File Created
|
||||||
|
-- Additional Comments:
|
||||||
|
--
|
||||||
|
----------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
library IEEE;
|
||||||
|
use IEEE.STD_LOGIC_1164.ALL;
|
||||||
|
use IEEE.STD_LOGIC_UNSIGNED.ALL;
|
||||||
|
|
||||||
|
-- Uncomment the following library declaration if using
|
||||||
|
-- arithmetic functions with Signed or Unsigned values
|
||||||
|
--use IEEE.NUMERIC_STD.ALL;
|
||||||
|
|
||||||
|
-- Uncomment the following library declaration if instantiating
|
||||||
|
-- any Xilinx leaf cells in this code.
|
||||||
|
--library UNISIM;
|
||||||
|
--use UNISIM.VComponents.all;
|
||||||
|
|
||||||
|
entity counter_2bit is
|
||||||
|
Port ( CLK : in STD_LOGIC;
|
||||||
|
RST : in STD_LOGIC;
|
||||||
|
COUNT_OUT : out STD_LOGIC_VECTOR (1 downto 0));
|
||||||
|
end counter_2bit;
|
||||||
|
|
||||||
|
architecture Behavioral of counter_2bit is
|
||||||
|
|
||||||
|
signal s_cnt : STD_LOGIC_VECTOR(1 downto 0) := "00";
|
||||||
|
begin
|
||||||
|
process(CLK, RST)
|
||||||
|
begin
|
||||||
|
if RST = '1' then
|
||||||
|
s_cnt <= "00";
|
||||||
|
elsif rising_edge(CLK) then
|
||||||
|
s_cnt <= s_cnt + 1;
|
||||||
|
end if;
|
||||||
|
end process;
|
||||||
|
COUNT_OUT <= s_cnt;
|
||||||
|
|
||||||
|
end Behavioral;
|
||||||
42
project_7/project_5.srcs/sources_1/new/counter_hour_tens.vhd
Normal file
42
project_7/project_5.srcs/sources_1/new/counter_hour_tens.vhd
Normal file
@@ -0,0 +1,42 @@
|
|||||||
|
|
||||||
|
library IEEE;
|
||||||
|
use IEEE.STD_LOGIC_1164.ALL;
|
||||||
|
use IEEE.STD_LOGIC_UNSIGNED.ALL;
|
||||||
|
|
||||||
|
entity cnt_0_2 is
|
||||||
|
Port ( CLK : in STD_LOGIC;
|
||||||
|
-- DIN : in STD_LOGIC_VECTOR (3 downto 0); -- teraz nas nezaujima
|
||||||
|
-- PE : in STD_LOGIC; -- teraz nas nezaujima
|
||||||
|
CE : in STD_LOGIC;
|
||||||
|
RST : in STD_LOGIC;
|
||||||
|
TC : out STD_LOGIC;
|
||||||
|
COUNT_OUT : out STD_LOGIC_VECTOR (3 downto 0));
|
||||||
|
end cnt_0_2;
|
||||||
|
|
||||||
|
architecture Behavioral of cnt_0_2 is
|
||||||
|
-- Internal signal to keep track of the current number
|
||||||
|
signal s_cnt : STD_LOGIC_VECTOR(3 downto 0) := "0000";
|
||||||
|
begin
|
||||||
|
|
||||||
|
-- Main counting logic
|
||||||
|
process(CLK)
|
||||||
|
begin
|
||||||
|
if rising_edge(CLK) then
|
||||||
|
if RST = '1' then
|
||||||
|
s_cnt <= "0000";
|
||||||
|
elsif CE = '1' then
|
||||||
|
-- toto preto, lebo su to desiatky hodin, 24 hod je max, takze
|
||||||
|
-- iba 0 - 2
|
||||||
|
if s_cnt = "0010" then
|
||||||
|
s_cnt <= "0000"; -- Reset to 0
|
||||||
|
else
|
||||||
|
s_cnt <= s_cnt + 1;
|
||||||
|
end if;
|
||||||
|
end if;
|
||||||
|
end if;
|
||||||
|
end process;
|
||||||
|
|
||||||
|
-- Drive the output ports
|
||||||
|
COUNT_OUT <= s_cnt;
|
||||||
|
|
||||||
|
end Behavioral;
|
||||||
@@ -0,0 +1,37 @@
|
|||||||
|
|
||||||
|
library IEEE;
|
||||||
|
use IEEE.STD_LOGIC_1164.ALL;
|
||||||
|
use IEEE.STD_LOGIC_UNSIGNED.ALL;
|
||||||
|
|
||||||
|
entity cnt_0_5 is
|
||||||
|
Port ( CLK : in STD_LOGIC;
|
||||||
|
RST : in STD_LOGIC;
|
||||||
|
CE : in STD_LOGIC;
|
||||||
|
TC : out STD_LOGIC;
|
||||||
|
COUNT_OUT : out STD_LOGIC_VECTOR (3 downto 0));
|
||||||
|
end cnt_0_5;
|
||||||
|
|
||||||
|
architecture Behavioral of cnt_0_5 is
|
||||||
|
-- Internal signal to keep track of the current number
|
||||||
|
signal s_cnt : STD_LOGIC_VECTOR(3 downto 0) := "0000";
|
||||||
|
begin
|
||||||
|
|
||||||
|
-- Main counting logic
|
||||||
|
process(CLK)
|
||||||
|
begin
|
||||||
|
if rising_edge(CLK) then
|
||||||
|
if RST = '1' then
|
||||||
|
s_cnt <= "0000";
|
||||||
|
elsif CE = '1' then
|
||||||
|
if s_cnt = "0110" then -- If we are at 6
|
||||||
|
s_cnt <= "0000"; -- Reset to 0
|
||||||
|
else
|
||||||
|
s_cnt <= s_cnt + 1; -- Increment
|
||||||
|
end if;
|
||||||
|
end if;
|
||||||
|
end if;
|
||||||
|
end process;
|
||||||
|
|
||||||
|
COUNT_OUT <= s_cnt;
|
||||||
|
|
||||||
|
end Behavioral;
|
||||||
37
project_7/project_5.srcs/sources_1/new/counter_ones.vhd
Normal file
37
project_7/project_5.srcs/sources_1/new/counter_ones.vhd
Normal file
@@ -0,0 +1,37 @@
|
|||||||
|
|
||||||
|
|
||||||
|
library IEEE;
|
||||||
|
use IEEE.STD_LOGIC_1164.ALL;
|
||||||
|
use IEEE.STD_LOGIC_UNSIGNED.ALL;
|
||||||
|
|
||||||
|
entity cnt_0_9 is
|
||||||
|
Port ( CLK : in STD_LOGIC;
|
||||||
|
CE : in STD_LOGIC;
|
||||||
|
RST : in STD_LOGIC;
|
||||||
|
TC : out STD_LOGIC;
|
||||||
|
COUNT_OUT : out STD_LOGIC_VECTOR (3 downto 0));
|
||||||
|
end cnt_0_9;
|
||||||
|
|
||||||
|
architecture Behavioral of cnt_0_9 is
|
||||||
|
-- Internal signal to keep track of the current number
|
||||||
|
signal s_cnt : STD_LOGIC_VECTOR(3 downto 0) := "0000";
|
||||||
|
begin
|
||||||
|
|
||||||
|
process(CLK)
|
||||||
|
begin
|
||||||
|
if rising_edge(CLK) then
|
||||||
|
if RST = '1' then
|
||||||
|
s_cnt <= "0000";
|
||||||
|
elsif CE = '1' then
|
||||||
|
if s_cnt = "1001" then -- If we are at 9
|
||||||
|
s_cnt <= "0000"; -- Reset to 0
|
||||||
|
else
|
||||||
|
s_cnt <= s_cnt + 1;
|
||||||
|
end if;
|
||||||
|
end if;
|
||||||
|
end if;
|
||||||
|
end process;
|
||||||
|
|
||||||
|
COUNT_OUT <= s_cnt;
|
||||||
|
|
||||||
|
end Behavioral;
|
||||||
58
project_7/project_5.srcs/sources_1/new/dec2.vhd
Normal file
58
project_7/project_5.srcs/sources_1/new/dec2.vhd
Normal file
@@ -0,0 +1,58 @@
|
|||||||
|
----------------------------------------------------------------------------------
|
||||||
|
-- Company:
|
||||||
|
-- Engineer:
|
||||||
|
--
|
||||||
|
-- Create Date: 09.03.2026 15:54:24
|
||||||
|
-- Design Name:
|
||||||
|
-- Module Name: dec_seg - Behavioral
|
||||||
|
-- Project Name:
|
||||||
|
-- Target Devices:
|
||||||
|
-- Tool Versions:
|
||||||
|
-- Description:
|
||||||
|
--
|
||||||
|
-- Dependencies:
|
||||||
|
--
|
||||||
|
-- Revision:
|
||||||
|
-- Revision 0.01 - File Created
|
||||||
|
-- Additional Comments:
|
||||||
|
--
|
||||||
|
----------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
library IEEE;
|
||||||
|
use IEEE.STD_LOGIC_1164.ALL;
|
||||||
|
|
||||||
|
-- Uncomment the following library declaration if using
|
||||||
|
-- arithmetic functions with Signed or Unsigned values
|
||||||
|
--use IEEE.NUMERIC_STD.ALL;
|
||||||
|
|
||||||
|
-- Uncomment the following library declaration if instantiating
|
||||||
|
-- any Xilinx leaf cells in this code.
|
||||||
|
--library UNISIM;
|
||||||
|
--use UNISIM.VComponents.all;
|
||||||
|
|
||||||
|
entity dec_seg is
|
||||||
|
Port ( BCD : in STD_LOGIC_VECTOR (3 downto 0);
|
||||||
|
SEG : out STD_LOGIC_VECTOR (7 downto 0));
|
||||||
|
end dec_seg;
|
||||||
|
|
||||||
|
architecture Behavioral of dec_seg is
|
||||||
|
|
||||||
|
begin
|
||||||
|
-- Konverzia BCD na 7-segment (ABCDEFG + DP)
|
||||||
|
-- Form<72>t: "ABCDEFG DP"
|
||||||
|
|
||||||
|
with bcd select
|
||||||
|
seg <= "11000000" when "0000", -- 0
|
||||||
|
"11111001" when "0001", -- 1
|
||||||
|
"10100100" when "0010", -- 2
|
||||||
|
"10110000" when "0011", -- 3
|
||||||
|
"10011001" when "0100", -- 4
|
||||||
|
"10010010" when "0101", -- 5
|
||||||
|
"10000010" when "0110", -- 6
|
||||||
|
"11111000" when "0111", -- 7
|
||||||
|
"10000000" when "1000", -- 8
|
||||||
|
"10010000" when "1001", -- 9
|
||||||
|
"11111111" when others; -- off
|
||||||
|
|
||||||
|
end Behavioral;
|
||||||
50
project_7/project_5.srcs/sources_1/new/decoder_bottom.vhd
Normal file
50
project_7/project_5.srcs/sources_1/new/decoder_bottom.vhd
Normal file
@@ -0,0 +1,50 @@
|
|||||||
|
----------------------------------------------------------------------------------
|
||||||
|
-- Company:
|
||||||
|
-- Engineer:
|
||||||
|
--
|
||||||
|
-- Create Date: 09.03.2026 15:39:11
|
||||||
|
-- Design Name:
|
||||||
|
-- Module Name: decoder_bottom - Behavioral
|
||||||
|
-- Project Name:
|
||||||
|
-- Target Devices:
|
||||||
|
-- Tool Versions:
|
||||||
|
-- Description:
|
||||||
|
--
|
||||||
|
-- Dependencies:
|
||||||
|
--
|
||||||
|
-- Revision:
|
||||||
|
-- Revision 0.01 - File Created
|
||||||
|
-- Additional Comments:
|
||||||
|
--
|
||||||
|
----------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
library IEEE;
|
||||||
|
use IEEE.STD_LOGIC_1164.ALL;
|
||||||
|
use IEEE.STD_LOGIC_UNSIGNED.ALL;
|
||||||
|
|
||||||
|
-- Uncomment the following library declaration if using
|
||||||
|
-- arithmetic functions with Signed or Unsigned values
|
||||||
|
--use IEEE.NUMERIC_STD.ALL;
|
||||||
|
|
||||||
|
-- Uncomment the following library declaration if instantiating
|
||||||
|
-- any Xilinx leaf cells in this code.
|
||||||
|
--library UNISIM;
|
||||||
|
--use UNISIM.VComponents.all;
|
||||||
|
|
||||||
|
entity decoder_an is
|
||||||
|
Port ( SEL : in STD_LOGIC_VECTOR (1 downto 0);
|
||||||
|
ANODES : out STD_LOGIC_VECTOR (3 downto 0));
|
||||||
|
end decoder_an;
|
||||||
|
|
||||||
|
architecture Behavioral of decoder_an is
|
||||||
|
|
||||||
|
begin
|
||||||
|
with SEL select
|
||||||
|
ANODES <= "1110" when "00",
|
||||||
|
"1101" when "01",
|
||||||
|
"1011" when "10",
|
||||||
|
"0111" when "11",
|
||||||
|
"1111" when others;
|
||||||
|
|
||||||
|
end Behavioral;
|
||||||
64
project_7/project_5.srcs/sources_1/new/display_drive.vhd
Normal file
64
project_7/project_5.srcs/sources_1/new/display_drive.vhd
Normal file
@@ -0,0 +1,64 @@
|
|||||||
|
-- display_drive.vhd
|
||||||
|
|
||||||
|
|
||||||
|
library IEEE;
|
||||||
|
use IEEE.STD_LOGIC_1164.ALL;
|
||||||
|
|
||||||
|
|
||||||
|
entity display_driver is
|
||||||
|
Port (
|
||||||
|
CLK : in STD_LOGIC; -- Connect to 400Hz signal
|
||||||
|
RST : in STD_LOGIC;
|
||||||
|
-- The four BCD digits from your counters
|
||||||
|
DIGIT_0 : in STD_LOGIC_VECTOR (3 downto 0);
|
||||||
|
DIGIT_1 : in STD_LOGIC_VECTOR (3 downto 0);
|
||||||
|
DIGIT_2 : in STD_LOGIC_VECTOR (3 downto 0);
|
||||||
|
DIGIT_3 : in STD_LOGIC_VECTOR (3 downto 0);
|
||||||
|
-- Physical outputs to the FPGA pins
|
||||||
|
SEGMENTS : out STD_LOGIC_VECTOR (7 downto 0);
|
||||||
|
ANODES : out STD_LOGIC_VECTOR (3 downto 0)
|
||||||
|
);
|
||||||
|
end display_driver;
|
||||||
|
|
||||||
|
architecture Behavioral of display_driver is
|
||||||
|
|
||||||
|
component counter_2bit is
|
||||||
|
Port ( CLK : in STD_LOGIC; RST : in STD_LOGIC;
|
||||||
|
COUNT_OUT : out STD_LOGIC_VECTOR (1 downto 0));
|
||||||
|
end component;
|
||||||
|
|
||||||
|
component decoder_an is
|
||||||
|
Port ( SEL : in STD_LOGIC_VECTOR (1 downto 0);
|
||||||
|
ANODES : out STD_LOGIC_VECTOR (3 downto 0));
|
||||||
|
end component;
|
||||||
|
|
||||||
|
component mux is
|
||||||
|
Port ( I0, I1, I2, I3 : in STD_LOGIC_VECTOR (3 downto 0);
|
||||||
|
S : in STD_LOGIC_VECTOR (1 downto 0);
|
||||||
|
Y : out STD_LOGIC_VECTOR (3 downto 0));
|
||||||
|
end component;
|
||||||
|
|
||||||
|
component dec_seg is
|
||||||
|
Port ( bcd : in STD_LOGIC_VECTOR (3 downto 0);
|
||||||
|
seg : out STD_LOGIC_VECTOR (7 downto 0));
|
||||||
|
end component;
|
||||||
|
|
||||||
|
-- Internal signals stay here now
|
||||||
|
signal s_cnt_2bit : std_logic_vector(1 downto 0);
|
||||||
|
signal s_mux_out : std_logic_vector(3 downto 0);
|
||||||
|
|
||||||
|
begin
|
||||||
|
U_CNT_2BIT : counter_2bit
|
||||||
|
port map (CLK => CLK, RST => RST, COUNT_OUT => s_cnt_2bit);
|
||||||
|
|
||||||
|
U_DEC_ANODES : decoder_an
|
||||||
|
port map (SEL => s_cnt_2bit, ANODES => ANODES);
|
||||||
|
|
||||||
|
U_MUX : mux
|
||||||
|
port map (I0 => DIGIT_0, I1 => DIGIT_1, I2 => DIGIT_2, I3 => DIGIT_3,
|
||||||
|
S => s_cnt_2bit, Y => s_mux_out);
|
||||||
|
|
||||||
|
U_DEC_SEG : dec_seg
|
||||||
|
port map (BCD => s_mux_out, SEG => SEGMENTS);
|
||||||
|
|
||||||
|
end Behavioral;
|
||||||
60
project_7/project_5.srcs/sources_1/new/divider.vhd
Normal file
60
project_7/project_5.srcs/sources_1/new/divider.vhd
Normal file
@@ -0,0 +1,60 @@
|
|||||||
|
----------------------------------------------------------------------------------
|
||||||
|
-- Company:
|
||||||
|
-- Engineer:
|
||||||
|
--
|
||||||
|
-- Create Date: 09.03.2026 14:43:21
|
||||||
|
-- Design Name:
|
||||||
|
-- Module Name: divider - Behavioral
|
||||||
|
-- Project Name:
|
||||||
|
-- Target Devices:
|
||||||
|
-- Tool Versions:
|
||||||
|
-- Description:
|
||||||
|
--
|
||||||
|
-- Dependencies:
|
||||||
|
--
|
||||||
|
-- Revision:
|
||||||
|
-- Revision 0.01 - File Created
|
||||||
|
-- Additional Comments:
|
||||||
|
--
|
||||||
|
----------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
library IEEE;
|
||||||
|
use IEEE.STD_LOGIC_1164.ALL;
|
||||||
|
use IEEE.STD_LOGIC_UNSIGNED.ALL;
|
||||||
|
|
||||||
|
-- Uncomment the following library declaration if using
|
||||||
|
-- arithmetic functions with Signed or Unsigned values
|
||||||
|
--use IEEE.NUMERIC_STD.ALL;
|
||||||
|
|
||||||
|
-- Uncomment the following library declaration if instantiating
|
||||||
|
-- any Xilinx leaf cells in this code.
|
||||||
|
--library UNISIM;
|
||||||
|
--use UNISIM.VComponents.all;
|
||||||
|
|
||||||
|
entity divider is
|
||||||
|
Port ( CLK : in STD_LOGIC;
|
||||||
|
RST : in STD_LOGIC;
|
||||||
|
CLK_1_Hz : out STD_LOGIC);
|
||||||
|
end divider;
|
||||||
|
|
||||||
|
architecture Behavioral of divider is
|
||||||
|
-- 27 bits is enough for 100 million
|
||||||
|
signal s_cnt : STD_LOGIC_VECTOR(26 downto 0) := (others => '0');
|
||||||
|
begin
|
||||||
|
process(CLK)
|
||||||
|
begin
|
||||||
|
if rising_edge(CLK) then
|
||||||
|
if RST = '1' then
|
||||||
|
s_cnt <= (others => '0');
|
||||||
|
CLK_1_Hz <= '0';
|
||||||
|
elsif s_cnt = 5_000_000 then
|
||||||
|
s_cnt <= (others => '0');
|
||||||
|
CLK_1_Hz <= '1'; -- The pulse
|
||||||
|
else
|
||||||
|
s_cnt <= s_cnt + 1;
|
||||||
|
CLK_1_Hz <= '0';
|
||||||
|
end if;
|
||||||
|
end if;
|
||||||
|
end process;
|
||||||
|
end Behavioral;
|
||||||
60
project_7/project_5.srcs/sources_1/new/divider_400Hz.vhd
Normal file
60
project_7/project_5.srcs/sources_1/new/divider_400Hz.vhd
Normal file
@@ -0,0 +1,60 @@
|
|||||||
|
----------------------------------------------------------------------------------
|
||||||
|
-- Company:
|
||||||
|
-- Engineer:
|
||||||
|
--
|
||||||
|
-- Create Date: 09.03.2026 14:49:47
|
||||||
|
-- Design Name:
|
||||||
|
-- Module Name: divider_400Hz - Behavioral
|
||||||
|
-- Project Name:
|
||||||
|
-- Target Devices:
|
||||||
|
-- Tool Versions:
|
||||||
|
-- Description:
|
||||||
|
--
|
||||||
|
-- Dependencies:
|
||||||
|
--
|
||||||
|
-- Revision:
|
||||||
|
-- Revision 0.01 - File Created
|
||||||
|
-- Additional Comments:
|
||||||
|
--
|
||||||
|
----------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
library IEEE;
|
||||||
|
use IEEE.STD_LOGIC_1164.ALL;
|
||||||
|
use IEEE.STD_LOGIC_UNSIGNED.ALL;
|
||||||
|
|
||||||
|
-- Uncomment the following library declaration if using
|
||||||
|
-- arithmetic functions with Signed or Unsigned values
|
||||||
|
--use IEEE.NUMERIC_STD.ALL;
|
||||||
|
|
||||||
|
-- Uncomment the following library declaration if instantiating
|
||||||
|
-- any Xilinx leaf cells in this code.
|
||||||
|
--library UNISIM;
|
||||||
|
--use UNISIM.VComponents.all;
|
||||||
|
|
||||||
|
entity divider_400Hz is
|
||||||
|
Port ( CLK : in STD_LOGIC;
|
||||||
|
RST : in STD_LOGIC;
|
||||||
|
CLK_400_Hz : out STD_LOGIC);
|
||||||
|
end divider_400Hz;
|
||||||
|
|
||||||
|
architecture Behavioral of divider_400Hz is
|
||||||
|
-- 18 bits is enough for 250,000
|
||||||
|
signal s_cnt : STD_LOGIC_VECTOR(17 downto 0) := (others => '0');
|
||||||
|
begin
|
||||||
|
process(CLK)
|
||||||
|
begin
|
||||||
|
if rising_edge(CLK) then
|
||||||
|
if RST = '1' then
|
||||||
|
s_cnt <= (others => '0');
|
||||||
|
CLK_400_Hz <= '0';
|
||||||
|
elsif s_cnt = 249_999 then
|
||||||
|
s_cnt <= (others => '0');
|
||||||
|
CLK_400_Hz <= '1';
|
||||||
|
else
|
||||||
|
s_cnt <= s_cnt + 1;
|
||||||
|
CLK_400_Hz <= '0';
|
||||||
|
end if;
|
||||||
|
end if;
|
||||||
|
end process;
|
||||||
|
end Behavioral;
|
||||||
53
project_7/project_5.srcs/sources_1/new/mux.vhd
Normal file
53
project_7/project_5.srcs/sources_1/new/mux.vhd
Normal file
@@ -0,0 +1,53 @@
|
|||||||
|
----------------------------------------------------------------------------------
|
||||||
|
-- Company:
|
||||||
|
-- Engineer:
|
||||||
|
--
|
||||||
|
-- Create Date: 09.03.2026 15:47:51
|
||||||
|
-- Design Name:
|
||||||
|
-- Module Name: mux - Behavioral
|
||||||
|
-- Project Name:
|
||||||
|
-- Target Devices:
|
||||||
|
-- Tool Versions:
|
||||||
|
-- Description:
|
||||||
|
--
|
||||||
|
-- Dependencies:
|
||||||
|
--
|
||||||
|
-- Revision:
|
||||||
|
-- Revision 0.01 - File Created
|
||||||
|
-- Additional Comments:
|
||||||
|
--
|
||||||
|
----------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
library IEEE;
|
||||||
|
use IEEE.STD_LOGIC_1164.ALL;
|
||||||
|
|
||||||
|
-- Uncomment the following library declaration if using
|
||||||
|
-- arithmetic functions with Signed or Unsigned values
|
||||||
|
--use IEEE.NUMERIC_STD.ALL;
|
||||||
|
|
||||||
|
-- Uncomment the following library declaration if instantiating
|
||||||
|
-- any Xilinx leaf cells in this code.
|
||||||
|
--library UNISIM;
|
||||||
|
--use UNISIM.VComponents.all;
|
||||||
|
|
||||||
|
entity mux is
|
||||||
|
Port ( I0 : in STD_LOGIC_VECTOR (3 downto 0);
|
||||||
|
I1 : in STD_LOGIC_VECTOR (3 downto 0);
|
||||||
|
I2 : in STD_LOGIC_VECTOR (3 downto 0);
|
||||||
|
I3 : in STD_LOGIC_VECTOR (3 downto 0);
|
||||||
|
S : in STD_LOGIC_VECTOR (1 downto 0);
|
||||||
|
Y : out STD_LOGIC_VECTOR (3 downto 0));
|
||||||
|
end mux;
|
||||||
|
|
||||||
|
architecture Behavioral of mux is
|
||||||
|
|
||||||
|
begin
|
||||||
|
with S select
|
||||||
|
Y <= I0 when "00",
|
||||||
|
I1 when "01",
|
||||||
|
I2 when "10",
|
||||||
|
I3 when "11",
|
||||||
|
"0000" when others;
|
||||||
|
|
||||||
|
end Behavioral;
|
||||||
236
project_7/project_5.srcs/sources_1/new/top_modul.vhd
Normal file
236
project_7/project_5.srcs/sources_1/new/top_modul.vhd
Normal file
@@ -0,0 +1,236 @@
|
|||||||
|
-- top_modul.vhd
|
||||||
|
|
||||||
|
library IEEE;
|
||||||
|
use IEEE.STD_LOGIC_1164.ALL;
|
||||||
|
|
||||||
|
entity top_modul is
|
||||||
|
Port ( CLK : in STD_LOGIC;
|
||||||
|
RST : in STD_LOGIC;
|
||||||
|
START : in STD_LOGIC;
|
||||||
|
SW_MODE : in STD_LOGIC; -- '0' = HH:MM, '1' = MM:SS
|
||||||
|
SW_ALARM_SET : in STD_LOGIC; -- '0' = Display Clock, '1' = Set Alarm
|
||||||
|
SW_STOP_SET : in STD_LOGIC; -- '0' = Display Clock, '1' = Set Stopky
|
||||||
|
SW_DIN : in STD_LOGIC_VECTOR (3 downto 0); -- Value to set
|
||||||
|
BTN_LOAD : in STD_LOGIC_VECTOR (3 downto 0); -- Which digit to set
|
||||||
|
RST_B : in STD_LOGIC;
|
||||||
|
RST_C : in STD_LOGIC;
|
||||||
|
SEGMENTS : out STD_LOGIC_VECTOR (7 downto 0);
|
||||||
|
ANODS : out STD_LOGIC_VECTOR (3 downto 0);
|
||||||
|
ALARM_LED : out STD_LOGIC -- LED lights up when alarm triggers
|
||||||
|
);
|
||||||
|
end top_modul;
|
||||||
|
|
||||||
|
architecture Behavioral of top_modul is
|
||||||
|
component divider is
|
||||||
|
Port ( CLK : in STD_LOGIC;
|
||||||
|
RST : in STD_LOGIC;
|
||||||
|
CLK_1_Hz : out STD_LOGIC); -- Enable pulse
|
||||||
|
end component;
|
||||||
|
|
||||||
|
component divider_400Hz is
|
||||||
|
Port ( CLK : in STD_LOGIC;
|
||||||
|
RST : in STD_LOGIC;
|
||||||
|
CLK_400_Hz : out STD_LOGIC); -- Enable pulse
|
||||||
|
end component;
|
||||||
|
|
||||||
|
signal clk_1_Hz : std_logic;
|
||||||
|
signal clk_400_Hz : std_logic;
|
||||||
|
signal s_ce_units : std_logic;
|
||||||
|
|
||||||
|
-- Top_modul can carry data between the two submodules thanks to this
|
||||||
|
signal sig_s_units, sig_s_tens : std_logic_vector(3 downto 0);
|
||||||
|
signal sig_m_units, sig_m_tens : std_logic_vector(3 downto 0);
|
||||||
|
signal sig_h_units, sig_h_tens : std_logic_vector(3 downto 0);
|
||||||
|
|
||||||
|
-- Alarm display clock
|
||||||
|
signal alrm_s_units, alrm_s_tens : std_logic_vector(3 downto 0);
|
||||||
|
signal alrm_m_units, alrm_m_tens : std_logic_vector(3 downto 0);
|
||||||
|
signal alrm_h_units, alrm_h_tens : std_logic_vector(3 downto 0);
|
||||||
|
|
||||||
|
-- stopky clock
|
||||||
|
signal stop_s_units, stop_s_tens : std_logic_vector(3 downto 0);
|
||||||
|
signal stop_m_units, stop_m_tens : std_logic_vector(3 downto 0);
|
||||||
|
signal stop_h_units, stop_h_tens : std_logic_vector(3 downto 0);
|
||||||
|
-- cap stopky clock
|
||||||
|
signal cap_s_units, cap_s_tens : std_logic_vector(3 downto 0);
|
||||||
|
signal cap_m_units, cap_m_tens : std_logic_vector(3 downto 0);
|
||||||
|
signal cap_h_units, cap_h_tens : std_logic_vector(3 downto 0);
|
||||||
|
|
||||||
|
-- Signals to send to the display
|
||||||
|
signal d0, d1, d2, d3 : std_logic_vector(3 downto 0);
|
||||||
|
|
||||||
|
signal load_clock : std_logic_vector(3 downto 0);
|
||||||
|
signal load_alarm : std_logic_vector(3 downto 0);
|
||||||
|
signal load_stopky : std_logic_vector(3 downto 0);
|
||||||
|
|
||||||
|
-- stopky ci behaju
|
||||||
|
signal stops_running : std_logic := '0';
|
||||||
|
signal stops_reset: std_logic := '0';
|
||||||
|
signal sw_stop_prev : std_logic := '0';
|
||||||
|
begin
|
||||||
|
|
||||||
|
U_DIV_1HZ : divider
|
||||||
|
port map (
|
||||||
|
CLK => CLK,
|
||||||
|
RST => RST,
|
||||||
|
CLK_1_Hz => clk_1_Hz
|
||||||
|
);
|
||||||
|
|
||||||
|
U_DIV_REFRESH : divider_400Hz
|
||||||
|
port map (
|
||||||
|
CLK => CLK,
|
||||||
|
RST => RST,
|
||||||
|
CLK_400_Hz => clk_400_Hz
|
||||||
|
);
|
||||||
|
|
||||||
|
s_ce_units <= clk_1_Hz and START;
|
||||||
|
load_clock <= BTN_LOAD when SW_ALARM_SET = '0' else "0000";
|
||||||
|
load_alarm <= BTN_LOAD when SW_ALARM_SET = '1' else "0000";
|
||||||
|
-- Clock Engine submodule
|
||||||
|
U_CLOCK_CORE : entity work.clock_logic
|
||||||
|
port map (
|
||||||
|
CLK => CLK,
|
||||||
|
RST => RST,
|
||||||
|
CE_1HZ => s_ce_units,
|
||||||
|
SW_DIN => SW_DIN,
|
||||||
|
BTN_LOAD => load_clock,
|
||||||
|
S_UNITS => sig_s_units,
|
||||||
|
S_TENS => sig_s_tens,
|
||||||
|
M_UNITS => sig_m_units,
|
||||||
|
M_TENS => sig_m_tens,
|
||||||
|
H_UNITS => sig_h_units,
|
||||||
|
H_TENS => sig_h_tens
|
||||||
|
);
|
||||||
|
|
||||||
|
-- Clock Engine submodule for alarm
|
||||||
|
U_ALARM_CORE : entity work.clock_logic
|
||||||
|
port map (
|
||||||
|
CLK => CLK,
|
||||||
|
RST => RST,
|
||||||
|
CE_1HZ => '0',
|
||||||
|
SW_DIN => SW_DIN,
|
||||||
|
BTN_LOAD => load_alarm,
|
||||||
|
S_UNITS => alrm_s_units,
|
||||||
|
S_TENS => alrm_s_tens,
|
||||||
|
M_UNITS => alrm_m_units,
|
||||||
|
M_TENS => alrm_m_tens,
|
||||||
|
H_UNITS => alrm_h_units,
|
||||||
|
H_TENS => alrm_h_tens
|
||||||
|
);
|
||||||
|
|
||||||
|
stops_running <= s_ce_units;
|
||||||
|
stops_reset <= RST or RST_C;
|
||||||
|
-- Clock Engine submodule for stopky
|
||||||
|
U_STOPKY_CORE : entity work.clock_logic
|
||||||
|
port map (
|
||||||
|
CLK => CLK,
|
||||||
|
RST => stops_reset,
|
||||||
|
CE_1HZ => stops_running,
|
||||||
|
SW_DIN => "0000",
|
||||||
|
BTN_LOAD => "0000",
|
||||||
|
S_UNITS => stop_s_units,
|
||||||
|
S_TENS => stop_s_tens,
|
||||||
|
M_UNITS => stop_m_units,
|
||||||
|
M_TENS => stop_m_tens,
|
||||||
|
H_UNITS => stop_h_units,
|
||||||
|
H_TENS => stop_h_tens
|
||||||
|
);
|
||||||
|
|
||||||
|
-- Comparator Logic for alarm LED to be ON or OFF
|
||||||
|
-- TODO BUG proste niekedy na zaciatku ledka svieti aj ked ma byt zhasnuta
|
||||||
|
process(CLK)
|
||||||
|
begin
|
||||||
|
if rising_edge(CLK) then
|
||||||
|
sw_stop_prev <= SW_STOP_SET;
|
||||||
|
-- alarm
|
||||||
|
if RST = '1' or RST_B = '1' then
|
||||||
|
ALARM_LED <= '0';
|
||||||
|
-- Match condition (HH:MM)
|
||||||
|
elsif (START = '1' and
|
||||||
|
sig_h_tens = alrm_h_tens and sig_h_units = alrm_h_units and
|
||||||
|
sig_m_tens = alrm_m_tens and sig_m_units = alrm_m_units and
|
||||||
|
sig_s_tens = "0000" and sig_s_units = "0000") then
|
||||||
|
ALARM_LED <= '1';
|
||||||
|
end if;
|
||||||
|
if RST = '1' or RST_C = '1' then
|
||||||
|
cap_s_units <= "0000";
|
||||||
|
cap_s_tens <= "0000";
|
||||||
|
cap_m_units <= "0000";
|
||||||
|
cap_m_tens <= "0000";
|
||||||
|
cap_h_units <= "0000";
|
||||||
|
cap_h_tens <= "0000";
|
||||||
|
stops_running <= '0';
|
||||||
|
elsif SW_STOP_SET = '1' and sw_stop_prev = '0' then
|
||||||
|
cap_s_units <= stop_s_units;
|
||||||
|
cap_s_tens <= stop_s_tens;
|
||||||
|
cap_m_units <= stop_m_units;
|
||||||
|
cap_m_tens <= stop_m_tens;
|
||||||
|
cap_h_units <= stop_h_units;
|
||||||
|
cap_h_tens <= stop_h_tens;
|
||||||
|
end if;
|
||||||
|
end if;
|
||||||
|
end process;
|
||||||
|
|
||||||
|
-- -- Mode Multiplexing
|
||||||
|
-- -- If SW_MODE = '1', show MM:SS. If '0', show HH:MM.
|
||||||
|
-- d0 <= sig_s_units when SW_MODE = '1' else sig_m_units;
|
||||||
|
-- d1 <= sig_s_tens when SW_MODE = '1' else sig_m_tens;
|
||||||
|
-- d2 <= sig_m_units when SW_MODE = '1' else sig_h_units;
|
||||||
|
-- d3 <= sig_m_tens when SW_MODE = '1' else sig_h_tens;
|
||||||
|
|
||||||
|
-- Mode Multiplexing (4 digit display)
|
||||||
|
process(SW_ALARM_SET, SW_MODE,
|
||||||
|
sig_s_units, sig_s_tens, sig_m_units, sig_m_tens, sig_h_units, sig_h_tens,
|
||||||
|
alrm_m_units, alrm_m_tens, alrm_h_units, alrm_h_tens, stop_s_units, stop_s_tens,
|
||||||
|
stop_m_units, stop_m_tens, stop_h_units, stop_h_tens )
|
||||||
|
begin
|
||||||
|
if SW_ALARM_SET = '1' then
|
||||||
|
-- While setting alarm, always show Alarm HH:MM
|
||||||
|
d0 <= alrm_m_units;
|
||||||
|
d1 <= alrm_m_tens;
|
||||||
|
d2 <= alrm_h_units;
|
||||||
|
d3 <= alrm_h_tens;
|
||||||
|
elsif SW_STOP_SET = '1' then
|
||||||
|
if SW_MODE = '1' then
|
||||||
|
-- Stopky (MM:SS)
|
||||||
|
d0 <= cap_s_units;
|
||||||
|
d1 <= cap_s_tens;
|
||||||
|
d2 <= cap_m_units;
|
||||||
|
d3 <= cap_m_tens;
|
||||||
|
else
|
||||||
|
-- Stopky (HH:MM)
|
||||||
|
d0 <= cap_m_units;
|
||||||
|
d1 <= cap_m_tens;
|
||||||
|
d2 <= cap_h_units;
|
||||||
|
d3 <= cap_h_tens;
|
||||||
|
end if;
|
||||||
|
else
|
||||||
|
-- Normal Operation
|
||||||
|
if SW_MODE = '1' then
|
||||||
|
-- Show Seconds and Minutes (MM:SS)
|
||||||
|
d0 <= sig_s_units;
|
||||||
|
d1 <= sig_s_tens;
|
||||||
|
d2 <= sig_m_units;
|
||||||
|
d3 <= sig_m_tens;
|
||||||
|
else
|
||||||
|
-- Show Minutes and Hours (HH:MM)
|
||||||
|
d0 <= sig_m_units;
|
||||||
|
d1 <= sig_m_tens;
|
||||||
|
d2 <= sig_h_units;
|
||||||
|
d3 <= sig_h_tens;
|
||||||
|
end if;
|
||||||
|
end if;
|
||||||
|
end process;
|
||||||
|
|
||||||
|
U_DISPLAY : entity work.display_driver
|
||||||
|
port map (
|
||||||
|
CLK => clk_400_Hz,
|
||||||
|
RST => RST,
|
||||||
|
DIGIT_0 => d0,
|
||||||
|
DIGIT_1 => d1,
|
||||||
|
DIGIT_2 => d2,
|
||||||
|
DIGIT_3 => d3,
|
||||||
|
SEGMENTS => SEGMENTS,
|
||||||
|
ANODES => ANODS
|
||||||
|
);
|
||||||
|
end Behavioral;
|
||||||
315
project_7/project_5.xpr
Normal file
315
project_7/project_5.xpr
Normal file
@@ -0,0 +1,315 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!-- Product Version: Vivado v2022.2 (64-bit) -->
|
||||||
|
<!-- -->
|
||||||
|
<!-- Copyright 1986-2022 Xilinx, Inc. All Rights Reserved. -->
|
||||||
|
|
||||||
|
<Project Version="7" Minor="61" Path="C:/Users/student/Documents/priecinok/project_7/project_5.xpr">
|
||||||
|
<DefaultLaunch Dir="$PRUNDIR"/>
|
||||||
|
<Configuration>
|
||||||
|
<Option Name="Id" Val="e38d1a4c4a2f4256841e587df17ee164"/>
|
||||||
|
<Option Name="Part" Val="xc7a35tcpg236-1"/>
|
||||||
|
<Option Name="CompiledLibDir" Val="$PCACHEDIR/compile_simlib"/>
|
||||||
|
<Option Name="CompiledLibDirXSim" Val=""/>
|
||||||
|
<Option Name="CompiledLibDirModelSim" Val="$PCACHEDIR/compile_simlib/modelsim"/>
|
||||||
|
<Option Name="CompiledLibDirQuesta" Val="$PCACHEDIR/compile_simlib/questa"/>
|
||||||
|
<Option Name="CompiledLibDirXcelium" Val="$PCACHEDIR/compile_simlib/xcelium"/>
|
||||||
|
<Option Name="CompiledLibDirVCS" Val="$PCACHEDIR/compile_simlib/vcs"/>
|
||||||
|
<Option Name="CompiledLibDirRiviera" Val="$PCACHEDIR/compile_simlib/riviera"/>
|
||||||
|
<Option Name="CompiledLibDirActivehdl" Val="$PCACHEDIR/compile_simlib/activehdl"/>
|
||||||
|
<Option Name="SimulatorInstallDirModelSim" Val=""/>
|
||||||
|
<Option Name="SimulatorInstallDirQuesta" Val=""/>
|
||||||
|
<Option Name="SimulatorInstallDirXcelium" Val=""/>
|
||||||
|
<Option Name="SimulatorInstallDirVCS" Val=""/>
|
||||||
|
<Option Name="SimulatorInstallDirRiviera" Val=""/>
|
||||||
|
<Option Name="SimulatorInstallDirActiveHdl" Val=""/>
|
||||||
|
<Option Name="SimulatorGccInstallDirModelSim" Val=""/>
|
||||||
|
<Option Name="SimulatorGccInstallDirQuesta" Val=""/>
|
||||||
|
<Option Name="SimulatorGccInstallDirXcelium" Val=""/>
|
||||||
|
<Option Name="SimulatorGccInstallDirVCS" Val=""/>
|
||||||
|
<Option Name="SimulatorGccInstallDirRiviera" Val=""/>
|
||||||
|
<Option Name="SimulatorGccInstallDirActiveHdl" Val=""/>
|
||||||
|
<Option Name="SimulatorVersionXsim" Val="2022.2"/>
|
||||||
|
<Option Name="SimulatorVersionModelSim" Val="2022.2"/>
|
||||||
|
<Option Name="SimulatorVersionQuesta" Val="2022.2"/>
|
||||||
|
<Option Name="SimulatorVersionXcelium" Val="21.09.009"/>
|
||||||
|
<Option Name="SimulatorVersionVCS" Val="S-2021.09"/>
|
||||||
|
<Option Name="SimulatorVersionRiviera" Val="2022.04"/>
|
||||||
|
<Option Name="SimulatorVersionActiveHdl" Val="13.0"/>
|
||||||
|
<Option Name="SimulatorGccVersionXsim" Val="6.2.0"/>
|
||||||
|
<Option Name="SimulatorGccVersionModelSim" Val="7.4.0"/>
|
||||||
|
<Option Name="SimulatorGccVersionQuesta" Val="7.4.0"/>
|
||||||
|
<Option Name="SimulatorGccVersionXcelium" Val="9.3.0"/>
|
||||||
|
<Option Name="SimulatorGccVersionVCS" Val="9.2.0"/>
|
||||||
|
<Option Name="SimulatorGccVersionRiviera" Val="9.3.0"/>
|
||||||
|
<Option Name="SimulatorGccVersionActiveHdl" Val="9.3.0"/>
|
||||||
|
<Option Name="TargetLanguage" Val="VHDL"/>
|
||||||
|
<Option Name="SimulatorLanguage" Val="VHDL"/>
|
||||||
|
<Option Name="BoardPart" Val="digilentinc.com:basys3:part0:1.2"/>
|
||||||
|
<Option Name="BoardPartRepoPaths" Val="$PPRDIR/../../../AppData/Roaming/Xilinx/Vivado/2022.2/xhub/board_store/xilinx_board_store"/>
|
||||||
|
<Option Name="ActiveSimSet" Val="sim_1"/>
|
||||||
|
<Option Name="DefaultLib" Val="xil_defaultlib"/>
|
||||||
|
<Option Name="ProjectType" Val="Default"/>
|
||||||
|
<Option Name="IPOutputRepo" Val="$PCACHEDIR/ip"/>
|
||||||
|
<Option Name="IPDefaultOutputPath" Val="$PGENDIR/sources_1"/>
|
||||||
|
<Option Name="IPCachePermission" Val="read"/>
|
||||||
|
<Option Name="IPCachePermission" Val="write"/>
|
||||||
|
<Option Name="EnableCoreContainer" Val="FALSE"/>
|
||||||
|
<Option Name="EnableResourceEstimation" Val="FALSE"/>
|
||||||
|
<Option Name="SimCompileState" Val="TRUE"/>
|
||||||
|
<Option Name="CreateRefXciForCoreContainers" Val="FALSE"/>
|
||||||
|
<Option Name="IPUserFilesDir" Val="$PIPUSERFILESDIR"/>
|
||||||
|
<Option Name="IPStaticSourceDir" Val="$PIPUSERFILESDIR/ipstatic"/>
|
||||||
|
<Option Name="EnableBDX" Val="FALSE"/>
|
||||||
|
<Option Name="DSABoardId" Val="basys3"/>
|
||||||
|
<Option Name="WTXSimLaunchSim" Val="0"/>
|
||||||
|
<Option Name="WTModelSimLaunchSim" Val="0"/>
|
||||||
|
<Option Name="WTQuestaLaunchSim" Val="0"/>
|
||||||
|
<Option Name="WTIesLaunchSim" Val="0"/>
|
||||||
|
<Option Name="WTVcsLaunchSim" Val="0"/>
|
||||||
|
<Option Name="WTRivieraLaunchSim" Val="0"/>
|
||||||
|
<Option Name="WTActivehdlLaunchSim" Val="0"/>
|
||||||
|
<Option Name="WTXSimExportSim" Val="0"/>
|
||||||
|
<Option Name="WTModelSimExportSim" Val="0"/>
|
||||||
|
<Option Name="WTQuestaExportSim" Val="0"/>
|
||||||
|
<Option Name="WTIesExportSim" Val="0"/>
|
||||||
|
<Option Name="WTVcsExportSim" Val="0"/>
|
||||||
|
<Option Name="WTRivieraExportSim" Val="0"/>
|
||||||
|
<Option Name="WTActivehdlExportSim" Val="0"/>
|
||||||
|
<Option Name="GenerateIPUpgradeLog" Val="TRUE"/>
|
||||||
|
<Option Name="XSimRadix" Val="hex"/>
|
||||||
|
<Option Name="XSimTimeUnit" Val="ns"/>
|
||||||
|
<Option Name="XSimArrayDisplayLimit" Val="1024"/>
|
||||||
|
<Option Name="XSimTraceLimit" Val="65536"/>
|
||||||
|
<Option Name="SimTypes" Val="rtl"/>
|
||||||
|
<Option Name="SimTypes" Val="bfm"/>
|
||||||
|
<Option Name="SimTypes" Val="tlm"/>
|
||||||
|
<Option Name="SimTypes" Val="tlm_dpi"/>
|
||||||
|
<Option Name="MEMEnableMemoryMapGeneration" Val="TRUE"/>
|
||||||
|
<Option Name="DcpsUptoDate" Val="TRUE"/>
|
||||||
|
<Option Name="ClassicSocBoot" Val="FALSE"/>
|
||||||
|
<Option Name="LocalIPRepoLeafDirName" Val="ip_repo"/>
|
||||||
|
</Configuration>
|
||||||
|
<FileSets Version="1" Minor="31">
|
||||||
|
<FileSet Name="sources_1" Type="DesignSrcs" RelSrcDir="$PSRCDIR/sources_1" RelGenDir="$PGENDIR/sources_1">
|
||||||
|
<Filter Type="Srcs"/>
|
||||||
|
<File Path="$PSRCDIR/sources_1/new/clock_logic.vhd">
|
||||||
|
<FileInfo>
|
||||||
|
<Attr Name="UsedIn" Val="synthesis"/>
|
||||||
|
<Attr Name="UsedIn" Val="simulation"/>
|
||||||
|
</FileInfo>
|
||||||
|
</File>
|
||||||
|
<File Path="$PSRCDIR/sources_1/new/counter.vhd">
|
||||||
|
<FileInfo>
|
||||||
|
<Attr Name="UsedIn" Val="synthesis"/>
|
||||||
|
<Attr Name="UsedIn" Val="simulation"/>
|
||||||
|
</FileInfo>
|
||||||
|
</File>
|
||||||
|
<File Path="$PSRCDIR/sources_1/new/counter_2bit.vhd">
|
||||||
|
<FileInfo>
|
||||||
|
<Attr Name="UsedIn" Val="synthesis"/>
|
||||||
|
<Attr Name="UsedIn" Val="simulation"/>
|
||||||
|
</FileInfo>
|
||||||
|
</File>
|
||||||
|
<File Path="$PSRCDIR/sources_1/new/dec2.vhd">
|
||||||
|
<FileInfo>
|
||||||
|
<Attr Name="UsedIn" Val="synthesis"/>
|
||||||
|
<Attr Name="UsedIn" Val="simulation"/>
|
||||||
|
</FileInfo>
|
||||||
|
</File>
|
||||||
|
<File Path="$PSRCDIR/sources_1/new/decoder_bottom.vhd">
|
||||||
|
<FileInfo>
|
||||||
|
<Attr Name="UsedIn" Val="synthesis"/>
|
||||||
|
<Attr Name="UsedIn" Val="simulation"/>
|
||||||
|
</FileInfo>
|
||||||
|
</File>
|
||||||
|
<File Path="$PSRCDIR/sources_1/new/display_drive.vhd">
|
||||||
|
<FileInfo>
|
||||||
|
<Attr Name="UsedIn" Val="synthesis"/>
|
||||||
|
<Attr Name="UsedIn" Val="simulation"/>
|
||||||
|
</FileInfo>
|
||||||
|
</File>
|
||||||
|
<File Path="$PSRCDIR/sources_1/new/divider.vhd">
|
||||||
|
<FileInfo>
|
||||||
|
<Attr Name="UsedIn" Val="synthesis"/>
|
||||||
|
<Attr Name="UsedIn" Val="simulation"/>
|
||||||
|
</FileInfo>
|
||||||
|
</File>
|
||||||
|
<File Path="$PSRCDIR/sources_1/new/divider_400Hz.vhd">
|
||||||
|
<FileInfo>
|
||||||
|
<Attr Name="UsedIn" Val="synthesis"/>
|
||||||
|
<Attr Name="UsedIn" Val="simulation"/>
|
||||||
|
</FileInfo>
|
||||||
|
</File>
|
||||||
|
<File Path="$PSRCDIR/sources_1/new/mux.vhd">
|
||||||
|
<FileInfo>
|
||||||
|
<Attr Name="UsedIn" Val="synthesis"/>
|
||||||
|
<Attr Name="UsedIn" Val="simulation"/>
|
||||||
|
</FileInfo>
|
||||||
|
</File>
|
||||||
|
<File Path="$PSRCDIR/sources_1/new/top_modul.vhd">
|
||||||
|
<FileInfo>
|
||||||
|
<Attr Name="UsedIn" Val="synthesis"/>
|
||||||
|
<Attr Name="UsedIn" Val="simulation"/>
|
||||||
|
</FileInfo>
|
||||||
|
</File>
|
||||||
|
<File Path="$PSRCDIR/sources_1/new/counter_hour_tens.vhd">
|
||||||
|
<FileInfo>
|
||||||
|
<Attr Name="AutoDisabled" Val="1"/>
|
||||||
|
<Attr Name="UsedIn" Val="synthesis"/>
|
||||||
|
<Attr Name="UsedIn" Val="simulation"/>
|
||||||
|
</FileInfo>
|
||||||
|
</File>
|
||||||
|
<File Path="$PSRCDIR/sources_1/new/counter_minute_tens.vhd">
|
||||||
|
<FileInfo>
|
||||||
|
<Attr Name="AutoDisabled" Val="1"/>
|
||||||
|
<Attr Name="UsedIn" Val="synthesis"/>
|
||||||
|
<Attr Name="UsedIn" Val="simulation"/>
|
||||||
|
</FileInfo>
|
||||||
|
</File>
|
||||||
|
<File Path="$PSRCDIR/sources_1/new/counter_ones.vhd">
|
||||||
|
<FileInfo>
|
||||||
|
<Attr Name="AutoDisabled" Val="1"/>
|
||||||
|
<Attr Name="UsedIn" Val="synthesis"/>
|
||||||
|
<Attr Name="UsedIn" Val="simulation"/>
|
||||||
|
</FileInfo>
|
||||||
|
</File>
|
||||||
|
<Config>
|
||||||
|
<Option Name="DesignMode" Val="RTL"/>
|
||||||
|
<Option Name="TopModule" Val="top_modul"/>
|
||||||
|
<Option Name="TopAutoSet" Val="TRUE"/>
|
||||||
|
<Option Name="dataflowViewerSettings" Val="min_width=16"/>
|
||||||
|
</Config>
|
||||||
|
</FileSet>
|
||||||
|
<FileSet Name="constrs_1" Type="Constrs" RelSrcDir="$PSRCDIR/constrs_1" RelGenDir="$PGENDIR/constrs_1">
|
||||||
|
<Filter Type="Constrs"/>
|
||||||
|
<File Path="$PSRCDIR/constrs_1/new/projekt_5.xdc">
|
||||||
|
<FileInfo>
|
||||||
|
<Attr Name="UsedIn" Val="synthesis"/>
|
||||||
|
<Attr Name="UsedIn" Val="implementation"/>
|
||||||
|
</FileInfo>
|
||||||
|
</File>
|
||||||
|
<File Path="$PSRCDIR/constrs_1/imports/Downloads/Basys-3-Master.xdc">
|
||||||
|
<FileInfo>
|
||||||
|
<Attr Name="ImportPath" Val="$PPRDIR/../../../Downloads/Basys-3-Master.xdc"/>
|
||||||
|
<Attr Name="ImportTime" Val="1771253458"/>
|
||||||
|
<Attr Name="UsedIn" Val="synthesis"/>
|
||||||
|
<Attr Name="UsedIn" Val="implementation"/>
|
||||||
|
</FileInfo>
|
||||||
|
</File>
|
||||||
|
<Config>
|
||||||
|
<Option Name="ConstrsType" Val="XDC"/>
|
||||||
|
</Config>
|
||||||
|
</FileSet>
|
||||||
|
<FileSet Name="sim_1" Type="SimulationSrcs" RelSrcDir="$PSRCDIR/sim_1" RelGenDir="$PGENDIR/sim_1">
|
||||||
|
<Filter Type="Srcs"/>
|
||||||
|
<Config>
|
||||||
|
<Option Name="DesignMode" Val="RTL"/>
|
||||||
|
<Option Name="TopModule" Val="top_modul"/>
|
||||||
|
<Option Name="TopLib" Val="xil_defaultlib"/>
|
||||||
|
<Option Name="TopAutoSet" Val="TRUE"/>
|
||||||
|
<Option Name="TransportPathDelay" Val="0"/>
|
||||||
|
<Option Name="TransportIntDelay" Val="0"/>
|
||||||
|
<Option Name="SelectedSimModel" Val="rtl"/>
|
||||||
|
<Option Name="PamDesignTestbench" Val=""/>
|
||||||
|
<Option Name="PamDutBypassFile" Val="xil_dut_bypass"/>
|
||||||
|
<Option Name="PamSignalDriverFile" Val="xil_bypass_driver"/>
|
||||||
|
<Option Name="PamPseudoTop" Val="pseudo_tb"/>
|
||||||
|
<Option Name="SrcSet" Val="sources_1"/>
|
||||||
|
</Config>
|
||||||
|
</FileSet>
|
||||||
|
<FileSet Name="utils_1" Type="Utils" RelSrcDir="$PSRCDIR/utils_1" RelGenDir="$PGENDIR/utils_1">
|
||||||
|
<Filter Type="Utils"/>
|
||||||
|
<File Path="$PSRCDIR/utils_1/imports/synth_1/top_modul.dcp">
|
||||||
|
<FileInfo>
|
||||||
|
<Attr Name="UsedIn" Val="synthesis"/>
|
||||||
|
<Attr Name="UsedIn" Val="implementation"/>
|
||||||
|
<Attr Name="UsedInSteps" Val="synth_1"/>
|
||||||
|
<Attr Name="AutoDcp" Val="1"/>
|
||||||
|
</FileInfo>
|
||||||
|
</File>
|
||||||
|
<Config>
|
||||||
|
<Option Name="TopAutoSet" Val="TRUE"/>
|
||||||
|
</Config>
|
||||||
|
</FileSet>
|
||||||
|
</FileSets>
|
||||||
|
<Simulators>
|
||||||
|
<Simulator Name="XSim">
|
||||||
|
<Option Name="Description" Val="Vivado Simulator"/>
|
||||||
|
<Option Name="CompiledLib" Val="0"/>
|
||||||
|
</Simulator>
|
||||||
|
<Simulator Name="ModelSim">
|
||||||
|
<Option Name="Description" Val="ModelSim Simulator"/>
|
||||||
|
</Simulator>
|
||||||
|
<Simulator Name="Questa">
|
||||||
|
<Option Name="Description" Val="Questa Advanced Simulator"/>
|
||||||
|
</Simulator>
|
||||||
|
<Simulator Name="Riviera">
|
||||||
|
<Option Name="Description" Val="Riviera-PRO Simulator"/>
|
||||||
|
</Simulator>
|
||||||
|
<Simulator Name="ActiveHDL">
|
||||||
|
<Option Name="Description" Val="Active-HDL Simulator"/>
|
||||||
|
</Simulator>
|
||||||
|
</Simulators>
|
||||||
|
<Runs Version="1" Minor="19">
|
||||||
|
<Run Id="synth_1" Type="Ft3:Synth" SrcSet="sources_1" Part="xc7a35tcpg236-1" ConstrsSet="constrs_1" Description="Vivado Synthesis Defaults" AutoIncrementalCheckpoint="true" IncrementalCheckpoint="$PSRCDIR/utils_1/imports/synth_1/top_modul.dcp" WriteIncrSynthDcp="false" State="current" Dir="$PRUNDIR/synth_1" IncludeInArchive="true" IsChild="false" AutoIncrementalDir="$PSRCDIR/utils_1/imports/synth_1" AutoRQSDir="$PSRCDIR/utils_1/imports/synth_1">
|
||||||
|
<Strategy Version="1" Minor="2">
|
||||||
|
<StratHandle Name="Vivado Synthesis Defaults" Flow="Vivado Synthesis 2022"/>
|
||||||
|
<Step Id="synth_design"/>
|
||||||
|
</Strategy>
|
||||||
|
<GeneratedRun Dir="$PRUNDIR" File="gen_run.xml"/>
|
||||||
|
<ReportStrategy Name="Vivado Synthesis Default Reports" Flow="Vivado Synthesis 2022"/>
|
||||||
|
<Report Name="ROUTE_DESIGN.REPORT_METHODOLOGY" Enabled="1"/>
|
||||||
|
<RQSFiles/>
|
||||||
|
</Run>
|
||||||
|
<Run Id="impl_1" Type="Ft2:EntireDesign" Part="xc7a35tcpg236-1" ConstrsSet="constrs_1" Description="Default settings for Implementation." AutoIncrementalCheckpoint="false" WriteIncrSynthDcp="false" State="current" Dir="$PRUNDIR/impl_1" SynthRun="synth_1" IncludeInArchive="true" IsChild="false" GenFullBitstream="true" AutoIncrementalDir="$PSRCDIR/utils_1/imports/impl_1" AutoRQSDir="$PSRCDIR/utils_1/imports/impl_1">
|
||||||
|
<Strategy Version="1" Minor="2">
|
||||||
|
<StratHandle Name="Vivado Implementation Defaults" Flow="Vivado Implementation 2022"/>
|
||||||
|
<Step Id="init_design"/>
|
||||||
|
<Step Id="opt_design"/>
|
||||||
|
<Step Id="power_opt_design"/>
|
||||||
|
<Step Id="place_design"/>
|
||||||
|
<Step Id="post_place_power_opt_design"/>
|
||||||
|
<Step Id="phys_opt_design"/>
|
||||||
|
<Step Id="route_design"/>
|
||||||
|
<Step Id="post_route_phys_opt_design"/>
|
||||||
|
<Step Id="write_bitstream"/>
|
||||||
|
</Strategy>
|
||||||
|
<GeneratedRun Dir="$PRUNDIR" File="gen_run.xml"/>
|
||||||
|
<ReportStrategy Name="Vivado Implementation Default Reports" Flow="Vivado Implementation 2022"/>
|
||||||
|
<Report Name="ROUTE_DESIGN.REPORT_METHODOLOGY" Enabled="1"/>
|
||||||
|
<RQSFiles/>
|
||||||
|
</Run>
|
||||||
|
</Runs>
|
||||||
|
<Board>
|
||||||
|
<Jumpers/>
|
||||||
|
</Board>
|
||||||
|
<DashboardSummary Version="1" Minor="0">
|
||||||
|
<Dashboards>
|
||||||
|
<Dashboard Name="default_dashboard">
|
||||||
|
<Gadgets>
|
||||||
|
<Gadget Name="drc_1" Type="drc" Version="1" Row="2" Column="0">
|
||||||
|
<GadgetParam Name="REPORTS" Type="string_list" Value="impl_1#impl_1_route_report_drc_0 "/>
|
||||||
|
</Gadget>
|
||||||
|
<Gadget Name="methodology_1" Type="methodology" Version="1" Row="2" Column="1">
|
||||||
|
<GadgetParam Name="REPORTS" Type="string_list" Value="impl_1#impl_1_route_report_methodology_0 "/>
|
||||||
|
</Gadget>
|
||||||
|
<Gadget Name="power_1" Type="power" Version="1" Row="1" Column="0">
|
||||||
|
<GadgetParam Name="REPORTS" Type="string_list" Value="impl_1#impl_1_route_report_power_0 "/>
|
||||||
|
</Gadget>
|
||||||
|
<Gadget Name="timing_1" Type="timing" Version="1" Row="0" Column="1">
|
||||||
|
<GadgetParam Name="REPORTS" Type="string_list" Value="impl_1#impl_1_route_report_timing_summary_0 "/>
|
||||||
|
</Gadget>
|
||||||
|
<Gadget Name="utilization_1" Type="utilization" Version="1" Row="0" Column="0">
|
||||||
|
<GadgetParam Name="REPORTS" Type="string_list" Value="synth_1#synth_1_synth_report_utilization_0 "/>
|
||||||
|
<GadgetParam Name="RUN.STEP" Type="string" Value="synth_design"/>
|
||||||
|
<GadgetParam Name="RUN.TYPE" Type="string" Value="synthesis"/>
|
||||||
|
</Gadget>
|
||||||
|
<Gadget Name="utilization_2" Type="utilization" Version="1" Row="1" Column="1">
|
||||||
|
<GadgetParam Name="REPORTS" Type="string_list" Value="impl_1#impl_1_place_report_utilization_0 "/>
|
||||||
|
</Gadget>
|
||||||
|
</Gadgets>
|
||||||
|
</Dashboard>
|
||||||
|
<CurrentDashboard>default_dashboard</CurrentDashboard>
|
||||||
|
</Dashboards>
|
||||||
|
</DashboardSummary>
|
||||||
|
</Project>
|
||||||
BIN
project_7/zadanie.jpg
Normal file
BIN
project_7/zadanie.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1.2 MiB |
@@ -0,0 +1,158 @@
|
|||||||
|
## This file is a general .xdc for the Basys3 rev B board
|
||||||
|
## To use it in a project:
|
||||||
|
## - uncomment the lines corresponding to used pins
|
||||||
|
## - rename the used ports (in each line, after get_ports) according to the top level signal names in the project
|
||||||
|
|
||||||
|
## Clock signal
|
||||||
|
set_property -dict { PACKAGE_PIN W5 IOSTANDARD LVCMOS33 } [get_ports CLK]
|
||||||
|
create_clock -add -name sys_clk_pin -period 10.00 -waveform {0 5} [get_ports CLK]
|
||||||
|
|
||||||
|
|
||||||
|
## Switches
|
||||||
|
set_property -dict { PACKAGE_PIN V17 IOSTANDARD LVCMOS33 } [get_ports {RST}]
|
||||||
|
set_property -dict { PACKAGE_PIN V16 IOSTANDARD LVCMOS33 } [get_ports {START}]
|
||||||
|
#set_property -dict { PACKAGE_PIN W16 IOSTANDARD LVCMOS33 } [get_ports {sw[2]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN W17 IOSTANDARD LVCMOS33 } [get_ports {sw[3]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN W15 IOSTANDARD LVCMOS33 } [get_ports {sw[4]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN V15 IOSTANDARD LVCMOS33 } [get_ports {sw[5]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN W14 IOSTANDARD LVCMOS33 } [get_ports {sw[6]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN W13 IOSTANDARD LVCMOS33 } [get_ports {sw[7]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN V2 IOSTANDARD LVCMOS33 } [get_ports {sw[8]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN T3 IOSTANDARD LVCMOS33 } [get_ports {sw[9]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN T2 IOSTANDARD LVCMOS33 } [get_ports {sw[10]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN R3 IOSTANDARD LVCMOS33 } [get_ports {sw[11]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN W2 IOSTANDARD LVCMOS33 } [get_ports {sw[12]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN U1 IOSTANDARD LVCMOS33 } [get_ports {sw[13]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN T1 IOSTANDARD LVCMOS33 } [get_ports {sw[14]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN R2 IOSTANDARD LVCMOS33 } [get_ports {sw[15]}]
|
||||||
|
|
||||||
|
|
||||||
|
## LEDs
|
||||||
|
#set_property -dict { PACKAGE_PIN U16 IOSTANDARD LVCMOS33 } [get_ports {led[0]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN E19 IOSTANDARD LVCMOS33 } [get_ports {led[1]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN U19 IOSTANDARD LVCMOS33 } [get_ports {led[2]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN V19 IOSTANDARD LVCMOS33 } [get_ports {led[3]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN W18 IOSTANDARD LVCMOS33 } [get_ports {led[4]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN U15 IOSTANDARD LVCMOS33 } [get_ports {led[5]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN U14 IOSTANDARD LVCMOS33 } [get_ports {led[6]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN V14 IOSTANDARD LVCMOS33 } [get_ports {led[7]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN V13 IOSTANDARD LVCMOS33 } [get_ports {led[8]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN V3 IOSTANDARD LVCMOS33 } [get_ports {led[9]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN W3 IOSTANDARD LVCMOS33 } [get_ports {led[10]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN U3 IOSTANDARD LVCMOS33 } [get_ports {led[11]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN P3 IOSTANDARD LVCMOS33 } [get_ports {led[12]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN N3 IOSTANDARD LVCMOS33 } [get_ports {led[13]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN P1 IOSTANDARD LVCMOS33 } [get_ports {led[14]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN L1 IOSTANDARD LVCMOS33 } [get_ports {led[15]}]
|
||||||
|
|
||||||
|
|
||||||
|
##7 Segment Display
|
||||||
|
set_property -dict { PACKAGE_PIN W7 IOSTANDARD LVCMOS33 } [get_ports {SEGMENTS[0]}]
|
||||||
|
set_property -dict { PACKAGE_PIN W6 IOSTANDARD LVCMOS33 } [get_ports {SEGMENTS[1]}]
|
||||||
|
set_property -dict { PACKAGE_PIN U8 IOSTANDARD LVCMOS33 } [get_ports {SEGMENTS[2]}]
|
||||||
|
set_property -dict { PACKAGE_PIN V8 IOSTANDARD LVCMOS33 } [get_ports {SEGMENTS[3]}]
|
||||||
|
set_property -dict { PACKAGE_PIN U5 IOSTANDARD LVCMOS33 } [get_ports {SEGMENTS[4]}]
|
||||||
|
set_property -dict { PACKAGE_PIN V5 IOSTANDARD LVCMOS33 } [get_ports {SEGMENTS[5]}]
|
||||||
|
set_property -dict { PACKAGE_PIN U7 IOSTANDARD LVCMOS33 } [get_ports {SEGMENTS[6]}]
|
||||||
|
|
||||||
|
set_property -dict { PACKAGE_PIN V7 IOSTANDARD LVCMOS33 } [get_ports {SEGMENTS[7]}]
|
||||||
|
|
||||||
|
set_property -dict { PACKAGE_PIN U2 IOSTANDARD LVCMOS33 } [get_ports {ANODS[0]}]
|
||||||
|
set_property -dict { PACKAGE_PIN U4 IOSTANDARD LVCMOS33 } [get_ports {ANODS[1]}]
|
||||||
|
set_property -dict { PACKAGE_PIN V4 IOSTANDARD LVCMOS33 } [get_ports {ANODS[2]}]
|
||||||
|
set_property -dict { PACKAGE_PIN W4 IOSTANDARD LVCMOS33 } [get_ports {ANODS[3]}]
|
||||||
|
|
||||||
|
##Buttons
|
||||||
|
#set_property -dict { PACKAGE_PIN U18 IOSTANDARD LVCMOS33 } [get_ports btnC]
|
||||||
|
#set_property -dict { PACKAGE_PIN T18 IOSTANDARD LVCMOS33 } [get_ports btnU]
|
||||||
|
#set_property -dict { PACKAGE_PIN W19 IOSTANDARD LVCMOS33 } [get_ports btnL]
|
||||||
|
#set_property -dict { PACKAGE_PIN T17 IOSTANDARD LVCMOS33 } [get_ports btnR]
|
||||||
|
#set_property -dict { PACKAGE_PIN U17 IOSTANDARD LVCMOS33 } [get_ports btnD]
|
||||||
|
|
||||||
|
|
||||||
|
##Pmod Header JA
|
||||||
|
#set_property -dict { PACKAGE_PIN J1 IOSTANDARD LVCMOS33 } [get_ports {JA[0]}];#Sch name = JA1
|
||||||
|
#set_property -dict { PACKAGE_PIN L2 IOSTANDARD LVCMOS33 } [get_ports {JA[1]}];#Sch name = JA2
|
||||||
|
#set_property -dict { PACKAGE_PIN J2 IOSTANDARD LVCMOS33 } [get_ports {JA[2]}];#Sch name = JA3
|
||||||
|
#set_property -dict { PACKAGE_PIN G2 IOSTANDARD LVCMOS33 } [get_ports {JA[3]}];#Sch name = JA4
|
||||||
|
#set_property -dict { PACKAGE_PIN H1 IOSTANDARD LVCMOS33 } [get_ports {JA[4]}];#Sch name = JA7
|
||||||
|
#set_property -dict { PACKAGE_PIN K2 IOSTANDARD LVCMOS33 } [get_ports {JA[5]}];#Sch name = JA8
|
||||||
|
#set_property -dict { PACKAGE_PIN H2 IOSTANDARD LVCMOS33 } [get_ports {JA[6]}];#Sch name = JA9
|
||||||
|
#set_property -dict { PACKAGE_PIN G3 IOSTANDARD LVCMOS33 } [get_ports {JA[7]}];#Sch name = JA10
|
||||||
|
|
||||||
|
##Pmod Header JB
|
||||||
|
#set_property -dict { PACKAGE_PIN A14 IOSTANDARD LVCMOS33 } [get_ports {JB[0]}];#Sch name = JB1
|
||||||
|
#set_property -dict { PACKAGE_PIN A16 IOSTANDARD LVCMOS33 } [get_ports {JB[1]}];#Sch name = JB2
|
||||||
|
#set_property -dict { PACKAGE_PIN B15 IOSTANDARD LVCMOS33 } [get_ports {JB[2]}];#Sch name = JB3
|
||||||
|
#set_property -dict { PACKAGE_PIN B16 IOSTANDARD LVCMOS33 } [get_ports {JB[3]}];#Sch name = JB4
|
||||||
|
#set_property -dict { PACKAGE_PIN A15 IOSTANDARD LVCMOS33 } [get_ports {JB[4]}];#Sch name = JB7
|
||||||
|
#set_property -dict { PACKAGE_PIN A17 IOSTANDARD LVCMOS33 } [get_ports {JB[5]}];#Sch name = JB8
|
||||||
|
#set_property -dict { PACKAGE_PIN C15 IOSTANDARD LVCMOS33 } [get_ports {JB[6]}];#Sch name = JB9
|
||||||
|
#set_property -dict { PACKAGE_PIN C16 IOSTANDARD LVCMOS33 } [get_ports {JB[7]}];#Sch name = JB10
|
||||||
|
|
||||||
|
##Pmod Header JC
|
||||||
|
#set_property -dict { PACKAGE_PIN K17 IOSTANDARD LVCMOS33 } [get_ports {JC[0]}];#Sch name = JC1
|
||||||
|
#set_property -dict { PACKAGE_PIN M18 IOSTANDARD LVCMOS33 } [get_ports {JC[1]}];#Sch name = JC2
|
||||||
|
#set_property -dict { PACKAGE_PIN N17 IOSTANDARD LVCMOS33 } [get_ports {JC[2]}];#Sch name = JC3
|
||||||
|
#set_property -dict { PACKAGE_PIN P18 IOSTANDARD LVCMOS33 } [get_ports {JC[3]}];#Sch name = JC4
|
||||||
|
#set_property -dict { PACKAGE_PIN L17 IOSTANDARD LVCMOS33 } [get_ports {JC[4]}];#Sch name = JC7
|
||||||
|
#set_property -dict { PACKAGE_PIN M19 IOSTANDARD LVCMOS33 } [get_ports {JC[5]}];#Sch name = JC8
|
||||||
|
#set_property -dict { PACKAGE_PIN P17 IOSTANDARD LVCMOS33 } [get_ports {JC[6]}];#Sch name = JC9
|
||||||
|
#set_property -dict { PACKAGE_PIN R18 IOSTANDARD LVCMOS33 } [get_ports {JC[7]}];#Sch name = JC10
|
||||||
|
|
||||||
|
##Pmod Header JXADC
|
||||||
|
#set_property -dict { PACKAGE_PIN J3 IOSTANDARD LVCMOS33 } [get_ports {JXADC[0]}];#Sch name = XA1_P
|
||||||
|
#set_property -dict { PACKAGE_PIN L3 IOSTANDARD LVCMOS33 } [get_ports {JXADC[1]}];#Sch name = XA2_P
|
||||||
|
#set_property -dict { PACKAGE_PIN M2 IOSTANDARD LVCMOS33 } [get_ports {JXADC[2]}];#Sch name = XA3_P
|
||||||
|
#set_property -dict { PACKAGE_PIN N2 IOSTANDARD LVCMOS33 } [get_ports {JXADC[3]}];#Sch name = XA4_P
|
||||||
|
#set_property -dict { PACKAGE_PIN K3 IOSTANDARD LVCMOS33 } [get_ports {JXADC[4]}];#Sch name = XA1_N
|
||||||
|
#set_property -dict { PACKAGE_PIN M3 IOSTANDARD LVCMOS33 } [get_ports {JXADC[5]}];#Sch name = XA2_N
|
||||||
|
#set_property -dict { PACKAGE_PIN M1 IOSTANDARD LVCMOS33 } [get_ports {JXADC[6]}];#Sch name = XA3_N
|
||||||
|
#set_property -dict { PACKAGE_PIN N1 IOSTANDARD LVCMOS33 } [get_ports {JXADC[7]}];#Sch name = XA4_N
|
||||||
|
|
||||||
|
|
||||||
|
##VGA Connector
|
||||||
|
#set_property -dict { PACKAGE_PIN G19 IOSTANDARD LVCMOS33 } [get_ports {vgaRed[0]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN H19 IOSTANDARD LVCMOS33 } [get_ports {vgaRed[1]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN J19 IOSTANDARD LVCMOS33 } [get_ports {vgaRed[2]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN N19 IOSTANDARD LVCMOS33 } [get_ports {vgaRed[3]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN N18 IOSTANDARD LVCMOS33 } [get_ports {vgaBlue[0]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN L18 IOSTANDARD LVCMOS33 } [get_ports {vgaBlue[1]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN K18 IOSTANDARD LVCMOS33 } [get_ports {vgaBlue[2]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN J18 IOSTANDARD LVCMOS33 } [get_ports {vgaBlue[3]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN J17 IOSTANDARD LVCMOS33 } [get_ports {vgaGreen[0]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN H17 IOSTANDARD LVCMOS33 } [get_ports {vgaGreen[1]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN G17 IOSTANDARD LVCMOS33 } [get_ports {vgaGreen[2]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN D17 IOSTANDARD LVCMOS33 } [get_ports {vgaGreen[3]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN P19 IOSTANDARD LVCMOS33 } [get_ports Hsync]
|
||||||
|
#set_property -dict { PACKAGE_PIN R19 IOSTANDARD LVCMOS33 } [get_ports Vsync]
|
||||||
|
|
||||||
|
|
||||||
|
##USB-RS232 Interface
|
||||||
|
#set_property -dict { PACKAGE_PIN B18 IOSTANDARD LVCMOS33 } [get_ports RsRx]
|
||||||
|
#set_property -dict { PACKAGE_PIN A18 IOSTANDARD LVCMOS33 } [get_ports RsTx]
|
||||||
|
|
||||||
|
|
||||||
|
##USB HID (PS/2)
|
||||||
|
#set_property -dict { PACKAGE_PIN C17 IOSTANDARD LVCMOS33 PULLUP true } [get_ports PS2Clk]
|
||||||
|
#set_property -dict { PACKAGE_PIN B17 IOSTANDARD LVCMOS33 PULLUP true } [get_ports PS2Data]
|
||||||
|
|
||||||
|
|
||||||
|
##Quad SPI Flash
|
||||||
|
##Note that CCLK_0 cannot be placed in 7 series devices. You can access it using the
|
||||||
|
##STARTUPE2 primitive.
|
||||||
|
#set_property -dict { PACKAGE_PIN D18 IOSTANDARD LVCMOS33 } [get_ports {QspiDB[0]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN D19 IOSTANDARD LVCMOS33 } [get_ports {QspiDB[1]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN G18 IOSTANDARD LVCMOS33 } [get_ports {QspiDB[2]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN F18 IOSTANDARD LVCMOS33 } [get_ports {QspiDB[3]}]
|
||||||
|
#set_property -dict { PACKAGE_PIN K19 IOSTANDARD LVCMOS33 } [get_ports QspiCSn]
|
||||||
|
|
||||||
|
|
||||||
|
## Configuration options, can be used for all designs
|
||||||
|
set_property CONFIG_VOLTAGE 3.3 [current_design]
|
||||||
|
set_property CFGBVS VCCO [current_design]
|
||||||
|
|
||||||
|
## SPI configuration mode options for QSPI boot, can be used for all designs
|
||||||
|
set_property BITSTREAM.GENERAL.COMPRESS TRUE [current_design]
|
||||||
|
set_property BITSTREAM.CONFIG.CONFIGRATE 33 [current_design]
|
||||||
|
set_property CONFIG_MODE SPIx4 [current_design]
|
||||||
@@ -0,0 +1,55 @@
|
|||||||
|
----------------------------------------------------------------------------------
|
||||||
|
-- Company:
|
||||||
|
-- Engineer:
|
||||||
|
--
|
||||||
|
-- Create Date: 09.03.2026 15:32:13
|
||||||
|
-- Design Name:
|
||||||
|
-- Module Name: counter_2bit - Behavioral
|
||||||
|
-- Project Name:
|
||||||
|
-- Target Devices:
|
||||||
|
-- Tool Versions:
|
||||||
|
-- Description:
|
||||||
|
--
|
||||||
|
-- Dependencies:
|
||||||
|
--
|
||||||
|
-- Revision:
|
||||||
|
-- Revision 0.01 - File Created
|
||||||
|
-- Additional Comments:
|
||||||
|
--
|
||||||
|
----------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
library IEEE;
|
||||||
|
use IEEE.STD_LOGIC_1164.ALL;
|
||||||
|
use IEEE.STD_LOGIC_UNSIGNED.ALL;
|
||||||
|
|
||||||
|
-- Uncomment the following library declaration if using
|
||||||
|
-- arithmetic functions with Signed or Unsigned values
|
||||||
|
--use IEEE.NUMERIC_STD.ALL;
|
||||||
|
|
||||||
|
-- Uncomment the following library declaration if instantiating
|
||||||
|
-- any Xilinx leaf cells in this code.
|
||||||
|
--library UNISIM;
|
||||||
|
--use UNISIM.VComponents.all;
|
||||||
|
|
||||||
|
entity counter_2bit is
|
||||||
|
Port ( CLK : in STD_LOGIC;
|
||||||
|
RST : in STD_LOGIC;
|
||||||
|
COUNT_OUT : out STD_LOGIC_VECTOR (1 downto 0));
|
||||||
|
end counter_2bit;
|
||||||
|
|
||||||
|
architecture Behavioral of counter_2bit is
|
||||||
|
|
||||||
|
signal s_cnt : STD_LOGIC_VECTOR(1 downto 0) := "00";
|
||||||
|
begin
|
||||||
|
process(CLK, RST)
|
||||||
|
begin
|
||||||
|
if RST = '1' then
|
||||||
|
s_cnt <= "00";
|
||||||
|
elsif rising_edge(CLK) then
|
||||||
|
s_cnt <= s_cnt + 1;
|
||||||
|
end if;
|
||||||
|
end process;
|
||||||
|
COUNT_OUT <= s_cnt;
|
||||||
|
|
||||||
|
end Behavioral;
|
||||||
@@ -0,0 +1,42 @@
|
|||||||
|
|
||||||
|
library IEEE;
|
||||||
|
use IEEE.STD_LOGIC_1164.ALL;
|
||||||
|
use IEEE.STD_LOGIC_UNSIGNED.ALL;
|
||||||
|
|
||||||
|
entity counter is
|
||||||
|
Port ( CLK : in STD_LOGIC;
|
||||||
|
DIN : in STD_LOGIC_VECTOR (3 downto 0); -- teraz nas nezaujima
|
||||||
|
PE : in STD_LOGIC; -- teraz nas nezaujima
|
||||||
|
CE : in STD_LOGIC;
|
||||||
|
RST : in STD_LOGIC;
|
||||||
|
TC : out STD_LOGIC;
|
||||||
|
COUNT_OUT : out STD_LOGIC_VECTOR (2 downto 0));
|
||||||
|
end counter;
|
||||||
|
|
||||||
|
architecture Behavioral of counter is
|
||||||
|
-- Internal signal to keep track of the current number
|
||||||
|
signal s_cnt : STD_LOGIC_VECTOR(3 downto 0) := "0000";
|
||||||
|
begin
|
||||||
|
|
||||||
|
-- Main counting logic
|
||||||
|
process(CLK)
|
||||||
|
begin
|
||||||
|
if rising_edge(CLK) then
|
||||||
|
if RST = '1' then
|
||||||
|
s_cnt <= "0000";
|
||||||
|
elsif CE = '1' then
|
||||||
|
-- toto preto, lebo su to desiatky hodin, 24 hod je max, takze
|
||||||
|
-- iba 0 - 2
|
||||||
|
if s_cnt = "0010" then
|
||||||
|
s_cnt <= "0000"; -- Reset to 0
|
||||||
|
else
|
||||||
|
s_cnt <= s_cnt + 1;
|
||||||
|
end if;
|
||||||
|
end if;
|
||||||
|
end if;
|
||||||
|
end process;
|
||||||
|
|
||||||
|
-- Drive the output ports
|
||||||
|
COUNT_OUT <= s_cnt;
|
||||||
|
|
||||||
|
end Behavioral;
|
||||||
@@ -0,0 +1,37 @@
|
|||||||
|
|
||||||
|
library IEEE;
|
||||||
|
use IEEE.STD_LOGIC_1164.ALL;
|
||||||
|
use IEEE.STD_LOGIC_UNSIGNED.ALL;
|
||||||
|
|
||||||
|
entity counter is
|
||||||
|
Port ( CLK : in STD_LOGIC;
|
||||||
|
RST : in STD_LOGIC;
|
||||||
|
CE : in STD_LOGIC;
|
||||||
|
TC : out STD_LOGIC;
|
||||||
|
COUNT_OUT : out STD_LOGIC_VECTOR (3 downto 0));
|
||||||
|
end counter;
|
||||||
|
|
||||||
|
architecture Behavioral of counter is
|
||||||
|
-- Internal signal to keep track of the current number
|
||||||
|
signal s_cnt : STD_LOGIC_VECTOR(3 downto 0) := "0000";
|
||||||
|
begin
|
||||||
|
|
||||||
|
-- Main counting logic
|
||||||
|
process(CLK)
|
||||||
|
begin
|
||||||
|
if rising_edge(CLK) then
|
||||||
|
if RST = '1' then
|
||||||
|
s_cnt <= "0000";
|
||||||
|
elsif CE = '1' then
|
||||||
|
if s_cnt = "0110" then -- If we are at 6
|
||||||
|
s_cnt <= "0000"; -- Reset to 0
|
||||||
|
else
|
||||||
|
s_cnt <= s_cnt + 1; -- Increment
|
||||||
|
end if;
|
||||||
|
end if;
|
||||||
|
end if;
|
||||||
|
end process;
|
||||||
|
|
||||||
|
COUNT_OUT <= s_cnt;
|
||||||
|
|
||||||
|
end Behavioral;
|
||||||
@@ -0,0 +1,37 @@
|
|||||||
|
|
||||||
|
|
||||||
|
library IEEE;
|
||||||
|
use IEEE.STD_LOGIC_1164.ALL;
|
||||||
|
use IEEE.STD_LOGIC_UNSIGNED.ALL;
|
||||||
|
|
||||||
|
entity counter is
|
||||||
|
Port ( CLK : in STD_LOGIC;
|
||||||
|
CE : in STD_LOGIC;
|
||||||
|
RST : in STD_LOGIC;
|
||||||
|
TC : out STD_LOGIC;
|
||||||
|
COUNT_OUT : out STD_LOGIC_VECTOR (3 downto 0));
|
||||||
|
end counter;
|
||||||
|
|
||||||
|
architecture Behavioral of counter is
|
||||||
|
-- Internal signal to keep track of the current number
|
||||||
|
signal s_cnt : STD_LOGIC_VECTOR(3 downto 0) := "0000";
|
||||||
|
begin
|
||||||
|
|
||||||
|
process(CLK)
|
||||||
|
begin
|
||||||
|
if rising_edge(CLK) then
|
||||||
|
if RST = '1' then
|
||||||
|
s_cnt <= "0000";
|
||||||
|
elsif CE = '1' then
|
||||||
|
if s_cnt = "1001" then -- If we are at 9
|
||||||
|
s_cnt <= "0000"; -- Reset to 0
|
||||||
|
else
|
||||||
|
s_cnt <= s_cnt + 1;
|
||||||
|
end if;
|
||||||
|
end if;
|
||||||
|
end if;
|
||||||
|
end process;
|
||||||
|
|
||||||
|
COUNT_OUT <= s_cnt;
|
||||||
|
|
||||||
|
end Behavioral;
|
||||||
58
project_7_hodiny/project_6.srcs/sources_1/new/dec2.vhd
Normal file
58
project_7_hodiny/project_6.srcs/sources_1/new/dec2.vhd
Normal file
@@ -0,0 +1,58 @@
|
|||||||
|
----------------------------------------------------------------------------------
|
||||||
|
-- Company:
|
||||||
|
-- Engineer:
|
||||||
|
--
|
||||||
|
-- Create Date: 09.03.2026 15:54:24
|
||||||
|
-- Design Name:
|
||||||
|
-- Module Name: dec_seg - Behavioral
|
||||||
|
-- Project Name:
|
||||||
|
-- Target Devices:
|
||||||
|
-- Tool Versions:
|
||||||
|
-- Description:
|
||||||
|
--
|
||||||
|
-- Dependencies:
|
||||||
|
--
|
||||||
|
-- Revision:
|
||||||
|
-- Revision 0.01 - File Created
|
||||||
|
-- Additional Comments:
|
||||||
|
--
|
||||||
|
----------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
library IEEE;
|
||||||
|
use IEEE.STD_LOGIC_1164.ALL;
|
||||||
|
|
||||||
|
-- Uncomment the following library declaration if using
|
||||||
|
-- arithmetic functions with Signed or Unsigned values
|
||||||
|
--use IEEE.NUMERIC_STD.ALL;
|
||||||
|
|
||||||
|
-- Uncomment the following library declaration if instantiating
|
||||||
|
-- any Xilinx leaf cells in this code.
|
||||||
|
--library UNISIM;
|
||||||
|
--use UNISIM.VComponents.all;
|
||||||
|
|
||||||
|
entity dec_seg is
|
||||||
|
Port ( BCD : in STD_LOGIC_VECTOR (3 downto 0);
|
||||||
|
SEG : out STD_LOGIC_VECTOR (7 downto 0));
|
||||||
|
end dec_seg;
|
||||||
|
|
||||||
|
architecture Behavioral of dec_seg is
|
||||||
|
|
||||||
|
begin
|
||||||
|
-- Konverzia BCD na 7-segment (ABCDEFG + DP)
|
||||||
|
-- Form<72>t: "ABCDEFG DP"
|
||||||
|
|
||||||
|
with bcd select
|
||||||
|
seg <= "11000000" when "0000", -- 0
|
||||||
|
"11111001" when "0001", -- 1
|
||||||
|
"10100100" when "0010", -- 2
|
||||||
|
"10110000" when "0011", -- 3
|
||||||
|
"10011001" when "0100", -- 4
|
||||||
|
"10010010" when "0101", -- 5
|
||||||
|
"10000010" when "0110", -- 6
|
||||||
|
"11111000" when "0111", -- 7
|
||||||
|
"10000000" when "1000", -- 8
|
||||||
|
"10010000" when "1001", -- 9
|
||||||
|
"11111111" when others; -- off
|
||||||
|
|
||||||
|
end Behavioral;
|
||||||
@@ -0,0 +1,50 @@
|
|||||||
|
----------------------------------------------------------------------------------
|
||||||
|
-- Company:
|
||||||
|
-- Engineer:
|
||||||
|
--
|
||||||
|
-- Create Date: 09.03.2026 15:39:11
|
||||||
|
-- Design Name:
|
||||||
|
-- Module Name: decoder_bottom - Behavioral
|
||||||
|
-- Project Name:
|
||||||
|
-- Target Devices:
|
||||||
|
-- Tool Versions:
|
||||||
|
-- Description:
|
||||||
|
--
|
||||||
|
-- Dependencies:
|
||||||
|
--
|
||||||
|
-- Revision:
|
||||||
|
-- Revision 0.01 - File Created
|
||||||
|
-- Additional Comments:
|
||||||
|
--
|
||||||
|
----------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
library IEEE;
|
||||||
|
use IEEE.STD_LOGIC_1164.ALL;
|
||||||
|
use IEEE.STD_LOGIC_UNSIGNED.ALL;
|
||||||
|
|
||||||
|
-- Uncomment the following library declaration if using
|
||||||
|
-- arithmetic functions with Signed or Unsigned values
|
||||||
|
--use IEEE.NUMERIC_STD.ALL;
|
||||||
|
|
||||||
|
-- Uncomment the following library declaration if instantiating
|
||||||
|
-- any Xilinx leaf cells in this code.
|
||||||
|
--library UNISIM;
|
||||||
|
--use UNISIM.VComponents.all;
|
||||||
|
|
||||||
|
entity decoder_an is
|
||||||
|
Port ( SEL : in STD_LOGIC_VECTOR (1 downto 0);
|
||||||
|
ANODES : out STD_LOGIC_VECTOR (3 downto 0));
|
||||||
|
end decoder_an;
|
||||||
|
|
||||||
|
architecture Behavioral of decoder_an is
|
||||||
|
|
||||||
|
begin
|
||||||
|
with SEL select
|
||||||
|
ANODES <= "1110" when "00",
|
||||||
|
"1101" when "01",
|
||||||
|
"1011" when "10",
|
||||||
|
"0111" when "11",
|
||||||
|
"1111" when others;
|
||||||
|
|
||||||
|
end Behavioral;
|
||||||
60
project_7_hodiny/project_6.srcs/sources_1/new/divider.vhd
Normal file
60
project_7_hodiny/project_6.srcs/sources_1/new/divider.vhd
Normal file
@@ -0,0 +1,60 @@
|
|||||||
|
----------------------------------------------------------------------------------
|
||||||
|
-- Company:
|
||||||
|
-- Engineer:
|
||||||
|
--
|
||||||
|
-- Create Date: 09.03.2026 14:43:21
|
||||||
|
-- Design Name:
|
||||||
|
-- Module Name: divider - Behavioral
|
||||||
|
-- Project Name:
|
||||||
|
-- Target Devices:
|
||||||
|
-- Tool Versions:
|
||||||
|
-- Description:
|
||||||
|
--
|
||||||
|
-- Dependencies:
|
||||||
|
--
|
||||||
|
-- Revision:
|
||||||
|
-- Revision 0.01 - File Created
|
||||||
|
-- Additional Comments:
|
||||||
|
--
|
||||||
|
----------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
library IEEE;
|
||||||
|
use IEEE.STD_LOGIC_1164.ALL;
|
||||||
|
use IEEE.STD_LOGIC_UNSIGNED.ALL;
|
||||||
|
|
||||||
|
-- Uncomment the following library declaration if using
|
||||||
|
-- arithmetic functions with Signed or Unsigned values
|
||||||
|
--use IEEE.NUMERIC_STD.ALL;
|
||||||
|
|
||||||
|
-- Uncomment the following library declaration if instantiating
|
||||||
|
-- any Xilinx leaf cells in this code.
|
||||||
|
--library UNISIM;
|
||||||
|
--use UNISIM.VComponents.all;
|
||||||
|
|
||||||
|
entity divider is
|
||||||
|
Port ( CLK : in STD_LOGIC;
|
||||||
|
RST : in STD_LOGIC;
|
||||||
|
CLK_1_Hz : out STD_LOGIC);
|
||||||
|
end divider;
|
||||||
|
|
||||||
|
architecture Behavioral of divider is
|
||||||
|
-- 27 bits is enough for 100 million
|
||||||
|
signal s_cnt : STD_LOGIC_VECTOR(26 downto 0) := (others => '0');
|
||||||
|
begin
|
||||||
|
process(CLK)
|
||||||
|
begin
|
||||||
|
if rising_edge(CLK) then
|
||||||
|
if RST = '1' then
|
||||||
|
s_cnt <= (others => '0');
|
||||||
|
CLK_1_Hz <= '0';
|
||||||
|
elsif s_cnt = 99_999_999 then
|
||||||
|
s_cnt <= (others => '0');
|
||||||
|
CLK_1_Hz <= '1'; -- The pulse
|
||||||
|
else
|
||||||
|
s_cnt <= s_cnt + 1;
|
||||||
|
CLK_1_Hz <= '0';
|
||||||
|
end if;
|
||||||
|
end if;
|
||||||
|
end process;
|
||||||
|
end Behavioral;
|
||||||
@@ -0,0 +1,60 @@
|
|||||||
|
----------------------------------------------------------------------------------
|
||||||
|
-- Company:
|
||||||
|
-- Engineer:
|
||||||
|
--
|
||||||
|
-- Create Date: 09.03.2026 14:49:47
|
||||||
|
-- Design Name:
|
||||||
|
-- Module Name: divider_400Hz - Behavioral
|
||||||
|
-- Project Name:
|
||||||
|
-- Target Devices:
|
||||||
|
-- Tool Versions:
|
||||||
|
-- Description:
|
||||||
|
--
|
||||||
|
-- Dependencies:
|
||||||
|
--
|
||||||
|
-- Revision:
|
||||||
|
-- Revision 0.01 - File Created
|
||||||
|
-- Additional Comments:
|
||||||
|
--
|
||||||
|
----------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
library IEEE;
|
||||||
|
use IEEE.STD_LOGIC_1164.ALL;
|
||||||
|
use IEEE.STD_LOGIC_UNSIGNED.ALL;
|
||||||
|
|
||||||
|
-- Uncomment the following library declaration if using
|
||||||
|
-- arithmetic functions with Signed or Unsigned values
|
||||||
|
--use IEEE.NUMERIC_STD.ALL;
|
||||||
|
|
||||||
|
-- Uncomment the following library declaration if instantiating
|
||||||
|
-- any Xilinx leaf cells in this code.
|
||||||
|
--library UNISIM;
|
||||||
|
--use UNISIM.VComponents.all;
|
||||||
|
|
||||||
|
entity divider_400Hz is
|
||||||
|
Port ( CLK : in STD_LOGIC;
|
||||||
|
RST : in STD_LOGIC;
|
||||||
|
CLK_400_Hz : out STD_LOGIC);
|
||||||
|
end divider_400Hz;
|
||||||
|
|
||||||
|
architecture Behavioral of divider_400Hz is
|
||||||
|
-- 18 bits is enough for 250,000
|
||||||
|
signal s_cnt : STD_LOGIC_VECTOR(17 downto 0) := (others => '0');
|
||||||
|
begin
|
||||||
|
process(CLK)
|
||||||
|
begin
|
||||||
|
if rising_edge(CLK) then
|
||||||
|
if RST = '1' then
|
||||||
|
s_cnt <= (others => '0');
|
||||||
|
CLK_400_Hz <= '0';
|
||||||
|
elsif s_cnt = 249_999 then
|
||||||
|
s_cnt <= (others => '0');
|
||||||
|
CLK_400_Hz <= '1';
|
||||||
|
else
|
||||||
|
s_cnt <= s_cnt + 1;
|
||||||
|
CLK_400_Hz <= '0';
|
||||||
|
end if;
|
||||||
|
end if;
|
||||||
|
end process;
|
||||||
|
end Behavioral;
|
||||||
53
project_7_hodiny/project_6.srcs/sources_1/new/mux.vhd
Normal file
53
project_7_hodiny/project_6.srcs/sources_1/new/mux.vhd
Normal file
@@ -0,0 +1,53 @@
|
|||||||
|
----------------------------------------------------------------------------------
|
||||||
|
-- Company:
|
||||||
|
-- Engineer:
|
||||||
|
--
|
||||||
|
-- Create Date: 09.03.2026 15:47:51
|
||||||
|
-- Design Name:
|
||||||
|
-- Module Name: mux - Behavioral
|
||||||
|
-- Project Name:
|
||||||
|
-- Target Devices:
|
||||||
|
-- Tool Versions:
|
||||||
|
-- Description:
|
||||||
|
--
|
||||||
|
-- Dependencies:
|
||||||
|
--
|
||||||
|
-- Revision:
|
||||||
|
-- Revision 0.01 - File Created
|
||||||
|
-- Additional Comments:
|
||||||
|
--
|
||||||
|
----------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
library IEEE;
|
||||||
|
use IEEE.STD_LOGIC_1164.ALL;
|
||||||
|
|
||||||
|
-- Uncomment the following library declaration if using
|
||||||
|
-- arithmetic functions with Signed or Unsigned values
|
||||||
|
--use IEEE.NUMERIC_STD.ALL;
|
||||||
|
|
||||||
|
-- Uncomment the following library declaration if instantiating
|
||||||
|
-- any Xilinx leaf cells in this code.
|
||||||
|
--library UNISIM;
|
||||||
|
--use UNISIM.VComponents.all;
|
||||||
|
|
||||||
|
entity mux is
|
||||||
|
Port ( I0 : in STD_LOGIC_VECTOR (3 downto 0);
|
||||||
|
I1 : in STD_LOGIC_VECTOR (3 downto 0);
|
||||||
|
I2 : in STD_LOGIC_VECTOR (3 downto 0);
|
||||||
|
I3 : in STD_LOGIC_VECTOR (3 downto 0);
|
||||||
|
S : in STD_LOGIC_VECTOR (1 downto 0);
|
||||||
|
Y : out STD_LOGIC_VECTOR (3 downto 0));
|
||||||
|
end mux;
|
||||||
|
|
||||||
|
architecture Behavioral of mux is
|
||||||
|
|
||||||
|
begin
|
||||||
|
with S select
|
||||||
|
Y <= I0 when "00",
|
||||||
|
I1 when "01",
|
||||||
|
I2 when "10",
|
||||||
|
I3 when "11",
|
||||||
|
"0000" when others;
|
||||||
|
|
||||||
|
end Behavioral;
|
||||||
182
project_7_hodiny/project_6.srcs/sources_1/new/top_modul.vhd
Normal file
182
project_7_hodiny/project_6.srcs/sources_1/new/top_modul.vhd
Normal file
@@ -0,0 +1,182 @@
|
|||||||
|
|
||||||
|
|
||||||
|
library IEEE;
|
||||||
|
use IEEE.STD_LOGIC_1164.ALL;
|
||||||
|
|
||||||
|
entity top_modul is
|
||||||
|
Port ( CLK : in STD_LOGIC;
|
||||||
|
RST : in STD_LOGIC;
|
||||||
|
START : in STD_LOGIC;
|
||||||
|
SEGMENTS : out STD_LOGIC_VECTOR (7 downto 0);
|
||||||
|
ANODS : out STD_LOGIC_VECTOR (3 downto 0));
|
||||||
|
end top_modul;
|
||||||
|
|
||||||
|
architecture Behavioral of top_modul is
|
||||||
|
|
||||||
|
component divider is
|
||||||
|
Port ( CLK : in STD_LOGIC;
|
||||||
|
RST : in STD_LOGIC;
|
||||||
|
CLK_1_Hz : out STD_LOGIC); -- This will be our enable pulse
|
||||||
|
end component;
|
||||||
|
|
||||||
|
component divider_400Hz is
|
||||||
|
Port ( CLK : in STD_LOGIC;
|
||||||
|
RST : in STD_LOGIC;
|
||||||
|
CLK_400_Hz : out STD_LOGIC); -- This will be our enable pulse
|
||||||
|
end component;
|
||||||
|
|
||||||
|
component cnt_0_9 is
|
||||||
|
Port ( CLK : in STD_LOGIC;
|
||||||
|
CE : in STD_LOGIC;
|
||||||
|
RST : in STD_LOGIC;
|
||||||
|
TC : out STD_LOGIC;
|
||||||
|
COUNT_OUT : out STD_LOGIC_VECTOR (3 downto 0));
|
||||||
|
end component;
|
||||||
|
|
||||||
|
component cnt_0_5 is
|
||||||
|
Port ( CLK : in STD_LOGIC;
|
||||||
|
CE : in STD_LOGIC;
|
||||||
|
RST : in STD_LOGIC;
|
||||||
|
TC : out STD_LOGIC;
|
||||||
|
COUNT_OUT : out STD_LOGIC_VECTOR (3 downto 0));
|
||||||
|
end component;
|
||||||
|
|
||||||
|
component cnt_0_2 is
|
||||||
|
Port ( CLK : in STD_LOGIC;
|
||||||
|
CE : in STD_LOGIC;
|
||||||
|
RST : in STD_LOGIC;
|
||||||
|
TC : out STD_LOGIC;
|
||||||
|
COUNT_OUT : out STD_LOGIC_VECTOR (3 downto 0));
|
||||||
|
end component;
|
||||||
|
|
||||||
|
component counter_2bit is
|
||||||
|
Port ( CLK : in STD_LOGIC;
|
||||||
|
RST : in STD_LOGIC;
|
||||||
|
COUNT_OUT : out STD_LOGIC_VECTOR (1 downto 0));
|
||||||
|
end component;
|
||||||
|
|
||||||
|
component decoder_an is
|
||||||
|
Port ( SEL : in STD_LOGIC_VECTOR (1 downto 0);
|
||||||
|
ANODES : out STD_LOGIC_VECTOR (3 downto 0));
|
||||||
|
end component;
|
||||||
|
|
||||||
|
component mux is
|
||||||
|
Port ( I0 : in STD_LOGIC_VECTOR (3 downto 0);
|
||||||
|
I1 : in STD_LOGIC_VECTOR (3 downto 0);
|
||||||
|
I2 : in STD_LOGIC_VECTOR (3 downto 0);
|
||||||
|
I3 : in STD_LOGIC_VECTOR (3 downto 0);
|
||||||
|
S : in STD_LOGIC_VECTOR (1 downto 0);
|
||||||
|
Y : out STD_LOGIC_VECTOR (3 downto 0));
|
||||||
|
end component;
|
||||||
|
|
||||||
|
component dec_seg is
|
||||||
|
Port ( bcd : in STD_LOGIC_VECTOR (3 downto 0);
|
||||||
|
seg : out STD_LOGIC_VECTOR (7 downto 0));
|
||||||
|
end component;
|
||||||
|
|
||||||
|
signal clk_1_Hz : std_logic;
|
||||||
|
signal clk_400_Hz : std_logic;
|
||||||
|
|
||||||
|
-- Internal signals to connect the counters
|
||||||
|
signal sig_m_units : std_logic_vector(3 downto 0);
|
||||||
|
signal sig_m_tens : std_logic_vector(3 downto 0);
|
||||||
|
signal sig_h_units : std_logic_vector(3 downto 0);
|
||||||
|
signal sig_h_tens : std_logic_vector(3 downto 0);
|
||||||
|
-- Carry signals (TC)
|
||||||
|
signal tc_mu, tc_mt, tc_hu : std_logic;
|
||||||
|
-- Reset for hours (to handle the 24 reset)
|
||||||
|
signal hour_reset : std_logic;
|
||||||
|
|
||||||
|
signal s_cnt_2bit : std_logic_vector(1 downto 0);
|
||||||
|
signal s_mux_out : std_logic_vector(3 downto 0);
|
||||||
|
|
||||||
|
begin
|
||||||
|
|
||||||
|
U_DIV : divider
|
||||||
|
port map (
|
||||||
|
CLK => CLK,
|
||||||
|
RST => RST,
|
||||||
|
CLK_1_Hz => clk_1_Hz
|
||||||
|
);
|
||||||
|
|
||||||
|
|
||||||
|
U_DIV_400Hz : divider_400Hz
|
||||||
|
port map (
|
||||||
|
CLK => CLK,
|
||||||
|
RST => RST,
|
||||||
|
CLK_400_Hz => clk_400_Hz
|
||||||
|
);
|
||||||
|
|
||||||
|
-- MINUTES UNITS (0-9)
|
||||||
|
U_CNT_MIN_UNITS : cnt_0_9
|
||||||
|
port map (
|
||||||
|
CLK => CLK,
|
||||||
|
RST => RST,
|
||||||
|
CE => clk_1_Hz and START,
|
||||||
|
TC => tc_mu,
|
||||||
|
COUNT_OUT => sig_m_units
|
||||||
|
);
|
||||||
|
|
||||||
|
-- MINUTES TENS (0-5)
|
||||||
|
U_CNT_MIN_TENS : cnt_0_5
|
||||||
|
port map (
|
||||||
|
CLK => CLK,
|
||||||
|
RST => RST,
|
||||||
|
CE => tc_mu,
|
||||||
|
TC => tc_mt,
|
||||||
|
COUNT_OUT => sig_m_tens
|
||||||
|
);
|
||||||
|
|
||||||
|
-- Logic to reset hours at 24:00
|
||||||
|
hour_reset <= '1' when (RST = '1' or (sig_h_tens = "0010" and sig_h_units = "0100")) else '0';
|
||||||
|
|
||||||
|
-- HOURS UNITS (0-9)
|
||||||
|
U_CNT_HOR_UNITS : cnt_0_9
|
||||||
|
port map (
|
||||||
|
CLK => CLK,
|
||||||
|
RST => hour_reset,
|
||||||
|
CE => tc_mt,
|
||||||
|
TC => tc_hu,
|
||||||
|
COUNT_OUT => sig_h_units
|
||||||
|
);
|
||||||
|
|
||||||
|
-- HOURS TENS (0-2)
|
||||||
|
U_CNT_HOR_TENS : cnt_0_2
|
||||||
|
port map (
|
||||||
|
CLK => CLK,
|
||||||
|
RST => hour_reset,
|
||||||
|
CE => tc_hu,
|
||||||
|
TC => open,
|
||||||
|
COUNT_OUT => sig_h_tens
|
||||||
|
);
|
||||||
|
|
||||||
|
U_CNT_2BIT : counter_2bit
|
||||||
|
port map (
|
||||||
|
CLK => clk_400_Hz,
|
||||||
|
RST => RST,
|
||||||
|
COUNT_OUT => s_cnt_2bit
|
||||||
|
);
|
||||||
|
|
||||||
|
U_DEC_ANODES : decoder_an
|
||||||
|
port map (
|
||||||
|
SEL => s_cnt_2bit, -- 2-bitov<6F> sign<67>l
|
||||||
|
ANODES => ANODS -- V<>stupn<70> port top modulu
|
||||||
|
);
|
||||||
|
|
||||||
|
U_MUX : mux
|
||||||
|
port map (
|
||||||
|
I0 => sig_m_units, -- Corrected signal names
|
||||||
|
I1 => sig_m_tens,
|
||||||
|
I2 => sig_h_units,
|
||||||
|
I3 => sig_h_tens,
|
||||||
|
S => s_cnt_2bit,
|
||||||
|
Y => s_mux_out
|
||||||
|
);
|
||||||
|
|
||||||
|
U_DEC_SEG : dec_seg
|
||||||
|
port map (
|
||||||
|
BCD => s_mux_out,
|
||||||
|
SEG => SEGMENTS
|
||||||
|
);
|
||||||
|
|
||||||
|
end Behavioral;
|
||||||
7
vhdl_ls.toml
Normal file
7
vhdl_ls.toml
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
[libraries]
|
||||||
|
ieee.files = [
|
||||||
|
]
|
||||||
|
|
||||||
|
work.files = [
|
||||||
|
"project_*/**/*.vhd",
|
||||||
|
]
|
||||||
Reference in New Issue
Block a user