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 isidoros

  1. I

    how do i can solve for java object.....pls help..

    Integer.parseInt() returns int, which is a primary data type and cannot be casted to a reference data type. You can create an object of type Integer, which can be casted to Object. To do this, use the below statement out[index] = new Integer(Integer.parseInt((String)out[index]));
  2. I

    How could I reduce the 46 clocks latency in FSL bus?

    Re: FSL bus latency! The 46 cycles latency may correspond to other instructions microblaze is executing between successive FSL transactions. I think it is reasonable.
  3. I

    What are the advantages and disadvantages of JAVA ?

    Re: Java Programming Java has a simple programming model, which helps you write object oriented applications easily and in a more productive way. There are no pointers in java. So bugs arising from pointer errors are eliminated. The lack of pointers also increases security. Additionally, the...
  4. I

    how to read a wav or Mp3 file and play it in java????

    You can download and use the java media framework (https://java.sun.com/products/java-media/jmf/)
  5. I

    Synchronous SRAM vs Asynchronous SRAM

    synchronous sram vs asynchronous sram A synchronous SRAM requires a clock signal to validate its control signals. An asynchronous SRAM is accessed without a clock. The rd, wr, en are used to read from/write to memory.

Part and Inventory Search

Back
Top