Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 783953
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T20:38:00+00:00 2026-05-14T20:38:00+00:00

Hey, I have almost no experience with Xilinx. I have a group project for

  • 0

Hey, I have almost no experience with Xilinx. I have a group project for a Digital Logic course that is due soon, where my partner, who was supposed to take care of the Xilinx simulations decided to bail on me. So here I am trying to figure it out last minute.

I have designed a synchronous counter using a few JK Flip Flops and I need to define the CLK input for the FJKCs.

I have drawn up the correct schematic, but I cannot figure out how to define a clock input.

Any help appreciated, and yes, this is homework. I just can’t find any basic xilinx documentation/tutorials online and I honestly don’t have time to learn the whole IDE.

I’m using VHDL

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-14T20:38:01+00:00Added an answer on May 14, 2026 at 8:38 pm

    Check out this example.

    library IEEE;
    use IEEE.std_logic_1164.all;
    use IEEE.numeric_std.all;    -- for the unsigned type
    
    entity counter_example is
    generic ( WIDTH : integer := 32);
    port (
      CLK, RESET, LOAD : in std_logic;
      DATA : in  unsigned(WIDTH-1 downto 0);  
      Q    : out unsigned(WIDTH-1 downto 0));
    end entity counter_example;
    
    architecture counter_example_a of counter_example is
    signal cnt : unsigned(WIDTH-1 downto 0);
    begin
      process(RESET, CLK) is
      begin
        if RESET = '1' then
          cnt <= (others => '0');
        elsif rising_edge(CLK) then
          if LOAD = '1' then
            cnt <= DATA;
          else
            cnt <= cnt + 1;
          end if;
        end if;
      end process;
    
      Q <= cnt;
    
    end architecture counter_example_a;
    

    Source

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Hey i have this div that shows as a popup: <div class=popup> </div> Then
Hey. I have an object that has a string property called BackgroundColor. This string
Hey all, I have something of an interesting requirement for my project. I need
Hey I have a windows server running python CGI scripts and I'm having a
Hey all - I have an app where I'm authenticating the user. They pass
Hey right now I'm using jQuery and I have some global variables to hold
Hey, Lets say we have a query which generates list of city names as
Hey all. I have a server written in java using the ServerSocket and Socket
Hey, I have a field called STATUS and it is either 1 to show
Hey gang. I have just written a client and server in C++ using sys/socket.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.