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 dsocer

  1. D

    Which algorithm is simple to implement for a multiplier?

    Re: multiplier the best way is to instantiate a multiplier if you are using fpga(c=a*b;) . If you want to implement ASIC,you can use booth arithmetic and 4-2 compressor.
  2. D

    NAND or NOR is faster

    Nand is faster in CMOS,but not in others.
  3. D

    leading zero detector

    Thank u! But I think it will became the critical path if I repeat until the last bit.
  4. D

    synchronous and asynchronous

    synchronous: always@(posedge clk ) begin if(rst==0) ...... else .............. end asynchronous:always@(posedge clk or negedge rst) I think synchronous is better in...
  5. D

    leading zero detector

    How can I implement a leading zero detector? If x+y=z(they are all 50bit),and I want to know the leading zero of z only use x and y,so how can I do that? Thx!
  6. D

    need help for verilog code

    always @ ( posedge Clock ) begin Data_REG = Data_IN >>1; REG = Data_REG >>1; Data_REG = Data_IN2 + Data_REG + REG; end
  7. D

    Verilog Instruction for finding absolute value!

    absolute value in verilog Tthere is no power opertor or square root operation in verilog HDL. square root operation is difficult to design and cost a lot of resources. the absolute value(b=|a|): reg a [31:0]; reg b [31:0]; always@(*) begin if (a[31]==1'b1) b[31:0]={1'b1,a[30:0]}; else b...
  8. D

    Looking for beginner books about PLI

    Re: verilog I think u should read several different verilog books to manage it well.
  9. D

    Need help with clock dependent counter in Verilog

    Re: clock dependent counter U can use a reg[2:0] . 000\001\011\010\110\111\101 to implement the counter.It can be made as a FSM. I think the system clk is better.
  10. D

    How to generate a two phase differential non-overlapping clock?

    Re: two phase clock If u want to gengerate non overlapping clocks , the duty cycle must not be 50%.One clock can be trigerred by another clock
  11. D

    Looking for tutorials on System C for Spartan3 starter kit

    Re: SYSTEMC I think it's a good idea,and I know that somebody did this before. I think sc2v is not very good,so I always transform by myself. I have the e-book of systemC primer,and who want it can contact me.

Part and Inventory Search

Back
Top