Hi Aaditya, That stmt would do the sign-extension keeping the number of bits constant. rama ... __________________________________________________ Do You...
Implementation wise, it is concatentation of the respective bits. out = {A[31], A[31], A[30], A[29], ................ A[1]} A[0] is lost Effectively it is a...
// Generated by ac_shell v4.0-s002 on Mon Mar 04 07:31:57 PST 2002. // Restrictions concerning the use of Ambit BuildGates are covered in the // license...
david_hollinbeck@...
Mar 4, 2002 3:35 pm
65
hi, well how can such lines be implemented in veilog a=0.25x-0.375y+4z+w; reply soon fatima __________________________________________________ Do You Yahoo!? ...
Making the code synthesizable it is a non-trivial issue, if you want to use this in a testbench, "real" variables in verilog can help, as an example real a, x,...
I guess people here might be interested in joining the "hdlplanet" group @ http://groups.yahoo.com/group/hdlplanet Also.... may be interested in visiting the...
Hi, I have downloaded these free tools. I have a problem. Whenever I try to build a file around 100 lines, the whole window disappears (win 98). This happens...
hi, i m working on synapticad. u have evaluatoin copy or something else , i mean full version if u have that code which closes the window send me i will telkl...
Hi, I am trying to install modelsim evaluation version. It is asking for some licence. How to get it? HK __________________________________________________ Do...
hi guys, I want to design a 7 to 128 line decoder using verilog. Its pretty stupid to like...mention 128 outputs for all possible combinations of inputs. ...
Hi, You could do: input [6:0] decode_in ; output [127:0] decode_out ; begin decode_out = 128'b0; decode_out[decode_in] = 1'b1; end Or you could use a for loop...
hi guys, thankyou for your reply. I had another question. If I want to build a ckt. where in : if line no : 12 is high...then....lines 0 thru 11 are high..the...
Hi all, I am a graduate student at University of Florida. I am new to the concept of hardware design using verilog. I am implementing a Chirp-Z 4-point...
hi, does any one know how to implement a 6 bit carry lookahead adder or a 6 input carry save adder with a 4 bit output using verilog ?? regards, aditya ...
Aditya its not difficult if u have understood it well. C the method and implement it in the same manner in verilog. For 4 bit output set the size of the output...
AOA , I need information abt PCI driver , although i have searched on net but didnt find anything. I m making GUI in VC ++ and using sockets then have to...
hi, how to generate random nubers in verylog? please send any one mail how to do this? kishore __________________________________________________ Do You...
Use $random to assign a random number to a variable. Dave Hollinbeck tati kishore <kishoretati@yaho To: verilog@yahoogroups.com o.com>...
david_hollinbeck@...
Apr 5, 2002 4:56 pm
83
hello, i want to design a 8 bit adder in verilog,that must contain all the dalays like pin to pin clb and pad delays,what ever we get delay in xilinx for each...
Excellent I2C core for Altera, Xilinx and PLDs for $50.00. Im a FPGA designer and wacked off about two weeks from developing my own I2C interface. The great...
hello, i want to design a 8 bit adder in verilog,that must contain all the dalays like pin to pin clb and pad delays,what ever we get delay in xilinx for each...
hi, I am preparing a dram controller and a testfixture to control a standard Micron SDRAM. For the same , i require the controller to initialize states for the...
hi, Since you know that the nature of work of my organization is mostly R&D with emphasis on upgrading of exixting systems. We have existing systems already ...
You cannot specify a delay to a synthesis tool. What is best is to use a clock and a shift register or counter to get the delay you require. Dave Hollinbeck ...
david_hollinbeck@...
Apr 16, 2002 7:46 pm
89
Hello I am a beginner in Verilog scripting and i have to do very quick a project based on a display 6 rows by 4 coloumns , and the last row should be free.I...