Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

Recent content by hpb

  1. H

    general criteria for selecting a connector

    Hello, What are the general criteria for selecting a straight or right angle connector? HPB
  2. H

    Easy question about pipeline: Is this code synthesizable?

    Hi flote21, If you are using for loop as the repetition of the same operation, then it is not at all synthesizable. Such codes give the correct output only in simulation. If the for loop is for duplicating the instances or procedures then the code might synthesize. Anyways I'm not getting what...
  3. H

    Unreached status in a FSM

    Hi Dijskstra , Please refer to below link. This may help you.. **broken link removed**
  4. H

    verilog code for Manchester carry adder

    https://obrazki.elektroda.pl/4572597200_1394618486.png Find the attached block diagram of the simple 2, four-bit manchester adders. It can be generalized as below. Boolean Equations: 1) Gi = Ai and Bi 2) Pi = Ai xorBi 3) Si = Pi xor Ci 4) Ci+1 = Gi or (Pi and Ci ) where -- Gi -> carry...
  5. H

    How to call multiple modules in a if else loop..

    Hi, Can You share the error messages? 1 thing you should consider while using the generate statement is that you should not give the conditions which change dynamically.
  6. H

    IR Remote controller working

    I have some cusom requirement.. We have "n" number of application boards which will be controlled by an IR remote.. Due to the interference all the systems are responding to all the remotes.. I want to to know whether universal remotes could help us out.. Using universal remotes we are...
  7. H

    How to call multiple modules in a if else loop..

    generate if (a == 1) begin module1_inst module1 ( .in1 (h), .in2 (i), .out1 (j) ); end else if (a == 2) begin module2_inst module2 ( .in1 (x), .in2 (y), .out1 (z) ); end else begin module3_inst module3 (...
  8. H

    or in Verilog for coding flipflop

    I agree with the reply.......
  9. H

    IR Remote controller working

    Is it possible to change/modify the vendor set system address of a remote?
  10. H

    IR Remote controller working

    Hi chuckiey, Thanks for the good information.
  11. H

    IR Remote controller working

    My main intention is to get the answer for 1 problem. That is, when there are multiple systems in front of a single remote, how can I operate only one system? (The remote is compatible for all the systems.) :!::???::thinker:
  12. H

    RTL for synthesis for the mentioned cases

    Above mentioned compiler directives can be used in synthesizable codes. These( 'ifdef, 'ifdef 'endif (there is no 'endifdef)) are helful to select the code segments and all. Even (b) 1'bz is sythesizable but (c) 1'bx is called non-synthesizable as we do not implement the digital circuit for...
  13. H

    or in Verilog for coding flipflop

    In Verilog "or" is not an operator; It is an operand namely Identifier, Please refer to the below links **broken link removed** , **broken link removed**
  14. H

    IR Remote controller working

    Hi all, Can anybody tell me, how/why any system (TV, VCR...) responds to a particular remote and not to all remotes?

Part and Inventory Search

Back
Top