python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
VHDL - Upper digit output does not go up from '0000', when implementing two-digit-bcd-counter
I'm trying to implement two-digit-bcd-counter in VHDL, by referring to this diagram:
This is my code for it:
library ieee;
use ieee.std_logic_1164.all;
entity two_digit_bcd_counter is
port(
v_cc...
theCursedPirate
Votes: 0
Answers: 1
Output not as expected when implementing 4-bit SISO register in VHDL
I am trying to create a 4-bit SISO register in VHDL, and this is my main code:
library ieee;
use ieee.std_logic_1164.all;
entity right_shift_siso_reg_4 is
port(
D_in : in std_logic;
clk : ...
theCursedPirate
Votes: 0
Answers: 2
Problem while implementing JK-Flip Flop in VHDL
I'm trying to implement JK flip-flop in VHDL, and here is my code:
library ieee;
use ieee.std_logic_1164.all;
entity jk_flip_flop is
port(
J, K : in std_logic;
clk : in std_logic;
...
theCursedPirate
Votes: 0
Answers: 1
How to represent multiple-output logic circuits in tree-based genetic programming
Consider the following digital logic circuit, which has multiple inputs and one output:
The logic circuit above can be represented in tree form:
This tree representation could then be used in a tree...
Flux
Votes: 0
Answers: 1