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 milindashokshende

  1. M

    simple C++ wrapper for VHDL DFF code

    yes you are correct, the following line should not be there in the behavior of DFF. clk = not clk after 5us; clk generation can come only in test bench. yes, the clk condition should be if clk'event and clk =='1' then but the main problem is not dff code, the main problem is to creat a...
  2. M

    simple C++ wrapper for VHDL DFF code

    I am researching the co-simulation interface VHDL and systemC. systemC is based on C++. as a very simple model, I want to creat a C function which wrapps a VHDL DFF code. which I may use in C++ class as a function member. i want to creat stucture like this C++ Class{ (private:fucntion member(C...
  3. M

    How to read a values from the structure in C

    you might solve the errors like following: #include<stdio.h> #define msize 4096 struct memory { int a[msize]; }; void read(struct memory m) { int i; for(i=0;i<sizeof(msize);i++) { scanf("%d", &m.a[i]); } } int main() { struct memory m; m.a[0]=250; // temperature value of 25,0...
  4. M

    Systemc vs other HDL

    SystemC is more on higher abstraction level then VHDL and Verilog. SystemC can be used on specification level, architecture level. where as VHDL and verilog are more on behavioral level and below. The biggest advantage of SystemC over VHDL and other HDLs is that it supports co-simulation of...
  5. M

    Search: Challenging and interesting PhD prct in field of Analog-mixed-signal-design

    After going through the recent literature available in my area of interest I have shortlisted couple of topics. Before putting them in front of my professor, I thought of putting them in front of the experienced and knowledgeable members like you to get another thought. Please go through the...
  6. M

    Search: Challenging and interesting PhD prct in field of Analog-mixed-signal-design

    Hi ic, JgK and Keith, wish you a very happy, prosperous, healthy and peaceful new year. :-) thanks for the inputs. @Keith: thanks for additional inputs. @JgK: thanks for giving me an another direction to think .... :idea: @ic : thanks for those website links, they were really very helpful...
  7. M

    Search: Challenging and interesting PhD prct in field of Analog-mixed-signal-design

    Thanks a lot Mr. Keith, The topic suggested by you sounds interesting. I will definitely look into it. if you still have some more description about this topic, it would be a gr8 help. with best regards and Marry Christmas !!! Mils
  8. M

    Search: Challenging and interesting PhD prct in field of Analog-mixed-signal-design

    Hi thr, Presently I am searching for a challenging and interesting PhD project. my field of interest is Analog mixed signal IC design. I would really love to work on a low-power micro-sensor circuit. if some body knows a project, only a detailed project description will also do. I am also...
  9. M

    Analog DC computation, convergence error in VHDL-AMS

    Hi thr, Presently I am trying to model aerodynamic effect of Wind turbine in VHDL_AMS more specifically in Mentor graphics ADvance-MS tool. All the designed got compiled successfully, but while simulating the design, I am getting following error. I tried various different ways to get rid of...

Part and Inventory Search

Back
Top