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 ram a

  1. R

    [SOLVED] plzz help me debug this verilog code of simple microprocessor........................

    module AC ( input [15:0] data_in, input load, clk, output reg [15:0] data_out ); always @( posedge clk or negedge clk ) if( load ) data_out <= data_in; endmodule module ALU_REG ( input [15:0] data_in,input clk, output reg [15:0] data_out ); always @( posedge clk or negedge clk ) data_out <=...

Part and Inventory Search

Back
Top