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 slcoleman

  1. S

    Specialized Memory Interface

    I have special need that requires either some "high-speed" dual ported memory or a way to use bank switching of some static ram between two separate address/data bus systems. I am not finding any high-speed dual-ported memory, and I am having a hard time finding any specialized chip sets that...
  2. S

    Quit from procedure in C

    In the C language all procedures are functions. The closest analogy to a procedure is a function that returns a void type (empty value). e.g. void myProcedure() { /* do something */ } If you want to return from a void function you just use "return;" without specifying any return value...
  3. S

    What's the meaning of 'argc' and 'argv' in C Language?

    C Language help Argc is the number of arguments. Argv is an array (vector) holding pointers to the string arguments passed on the command line. There will be the same number of strings as argc indicates and can be accessed as argv[n], where n is a number between 1 and argc. argv[0] is treated...

Part and Inventory Search

Back
Top