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 kaushikrvs

  1. K

    clock mux to eliminate glitches in input signals which are not clocks

    Clock mux in general makes the output glitch free. When both the clocks are low and the select signal is toggled; it switches output. If it works for clock; it should work for other signals as well.
  2. K

    why is write delay low for 6T SRAM cell compared to 8T SRAM cell ?

    why is write delay low for 6T SRAM cell compared to 8T SRAM cell ?
  3. K

    Why are the most critical signals in Digital Circuitry are Active low ?

    The most critical signals like reset signals for flip flops and the control signal of various communication interfaces (CS/SS for the SPI) are often active low. What advantages do they bring over having an active high signal ?
  4. K

    Randomizing Linked list addresses

    My malloc is allocating consecutive addresses. I want my linked list next address to be a random address instead of consecutive addresses. I know malloc is hard to control; so i wanted to know how to randomize the pointers in the linkedlist? For exxample ; if link1->next = 0xf8 ; link2->next =...
  5. K

    what are the tests to be performed to verify the robustness of a standard cell ?

    what tests should a standard cell qualify to be called as a robust standard cell ?
  6. K

    I have a Micro Code design assignment, how to proceed?

    I have a microcode assignment which has to be implemented in RTL, however, i am trying to build block by block but since there are highly interdependent on control unit, i am loosing motivation. So could anyone tell me how to proceed with such designs and any reference material would be...
  7. K

    What are some great papers every vlsi engineer should read?

    I wanted to know what are the papers that cover a lot of latest trends, and must reads for current generation vlsi
  8. K

    Query about Logical Efoort

    In the CMOS VLSI DESIGN book by Neil H E Weste, section 4.5.1 states that the logical effort is independent of the size of the transistors, the electrical effort is dependent on sizing? I believe logical effort is dependent on transistor sizing? Can you guys help me with this ?
  9. K

    why does power no longer scale with technology?

    why does power no longer scale with technology?
  10. K

    Tweaking Vsb to make the transistors to pass weak logics ?

    section 2.4.3.1 in the book " CMOS VLSI Design : 4th edition" by Neil H.E. Weste and David Money Harris says that can be done.
  11. K

    Tweaking Vsb to make the transistors to pass weak logics ?

    Does tweaking the Vsb(body effect) make an Nmos pass logic 1? if thats the case, HOW?
  12. K

    Number of Clock Cycles vs Clock period tradeoff

    Thanks for the reply. After trying to understand, I am still not convinced how does it result in increase of a clock cycle, Pipelining means that Fetch and Excute of instructions happen in parallel in the same clock cycle. Why do we need to increase clock period for that ?
  13. K

    How does lowering the voltage makes transitor more leaky?

    why is it a problem with newer technologies ?
  14. K

    Number of Clock Cycles vs Clock period tradeoff

    How does reducing number of clock cycles per instruction might increase the period of clock cycle? Can anyone please provide a clarity for this tradeoff? I found this while reading the book Computer organization and design, RISC V edition, In the section 1.6 perfomance
  15. K

    A perl Query regarding the foreach loop

    @list_1 = (1,2,3,4,5,6,7,8,9,10); @list_odd = @list_1[0,2,4,6,8]; @list_prime = @list_1[1,2,4,6]; foreach $x (@list_odd) { print @list_odd[$x];} Output : 3 , 7 For some reason, it's not showing the remaining elements of the list. Can anyone help me with it?

Part and Inventory Search

Back
Top