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 kjm

  1. K

    Passing real values in "tasks or functions" in Verilog

    Thanks dave_59, this is very useful. But I am having a small problem. I am trying to round off a real value ( For eg. 0.002625 to 0.003) as shown in code below, but here its giving wrong result. Could you please suggest any solution? module top; function real round_off(input real a)...
  2. K

    Passing real values in "tasks or functions" in Verilog

    Hi, I want to pass a real value to the function (or task) in verilog. That function will do few calculations in real data type and should return a real value to my module. How can I implement this ? Please explain with a small example. Thanks in Advance.
  3. K

    example of thermometric code

    Hi, Can anybody give me few examples of thermometric code.?
  4. K

    Node Process Clarification

    Hi, What exactly the node process mean.? For eg. if I say 40 nm node process, what does that mean exactly?
  5. K

    Using grep result in Makefile

    Hi, I am giving a test name from terminal which I am reading in Makefile. I want to grep the test name for say (ab, or cd, or ef) & I want to use this grep result in If-Else to assign value to another variable. How can I do it? Thanks in advance.
  6. K

    Microsoft windows not responding?

    That problem is often found with dell laptops.. Best thing is to reinstall your OS
  7. K

    Wi-Fi Direct vs Ad-hoc

    HELP...!!!!!
  8. K

    lcd led or plasma display system

    I think you can go through this **broken link removed**It will be helpful
  9. K

    [SOLVED] How usb works internally ?

    u can get a usb specification sheet from usb.org . This will solve all your doubts for sure.
  10. K

    lcd led or plasma display system

    Very first thing, plasma tvs are not having poorer contrast ratio. In-fact they have best contrast ratio compared to led & lcd tvs. Because of high contrast ratio they give the best image compared to lcd & led. But the display panel tends to loose its brightness with time (some years). However...
  11. K

    Some doubts in Verilog

    Above explanation seems correct, however there is a major difference between "REG" and "WIRE". WIRE needs to be driven continuously in order to get the output. (i.e. some variable has to drive WIRE continuously to some logic value, otherwise it will show high impedance value). REG does not...
  12. K

    doubt regarding blocking and non blocking statements in verilog?

    Note that all the statements will be executed whenever the value of "in" changes. 1). In o1=in; as soon as the value of in chnges, the same value is assigned to o1. So o1 is same as in. 2). In o2<=in; as soon as the value of "in" changes, its value is kept in a temporary variable and assigned...
  13. K

    What are all the customer requirements for a chip?

    Re: customer requirments Hi tyuga454, That is the very basic question. Costumer's requirement depends on their projects, but in general following things are generally considered: * Cost of chip. * Area required to fabricate the chip. * power requirement. * Speed. * Operating Temparature...
  14. K

    Wi-Fi Direct vs Ad-hoc

    Hi, The terms "Wi-Fi direct" and "Ad-hoc" sounds similar. Both of them don't require any WAP. So what exactly is the difference between Wi-Fi Direct network and Ad-hoc network ? Thanks in advance.
  15. K

    [SOLVED] Problem with `include in verilog

    I included the task between module/endmodule. But I was including it in the file list during compilation. That's why I was getting error... SOLVED. Thanks a lot

Part and Inventory Search

Back
Top