User Profile
User Widgets
Contributions
Re: Porting from Xilinx to Altera
Dear Richard Tan, Thanks a lot, I got the required support in order to proceed further in my work, The converted code is for Agilex, Will i able to use the agilex converted code to work on a cyclone 5 series boards. With Regards, V.Mathiazhagan1.5KViews0likes0CommentsRe: Porting from Xilinx to Altera
Dear RichardTanSY, I opened a new project and added the .qsf file but am not able to view the files, could u please share me the individual files that u have converted instead of a single .qsf file, I will add all the converted files to the new project created and let me check. With Regards, V.Mathiazhagan1.6KViews0likes0CommentsRe: Porting from Xilinx to Altera
Dear RichardTanSY, Thanks a lot for converting i don't have the quartus prime pro edition, I have only standard edition of 18.1 how to add the project file by creating new project, The qpf file is not getting added to my project, so will you be able to assist me in this how to do. With Regards, V.Mathiazhagan5.7KViews0likes0CommentsRe: Auto increment address in the memory in a verilog program
Dear Ean, No, I did not get any update for this problem, I have tried but i could not solve the problem, could u please share me a sample code for the above mentioned problem, which will be very much useful for me to proceed further. Awaiting for your favorable response. With Regards, V.Mathiazhagan4.1KViews0likes1CommentRe: Auto increment address in the memory in a verilog program
Dear Sir/Madam, Yes as you mentioned the addr[ADR-1:0] has been assigned as input, but the input cannot be declared as a register right, then how to solve the issue. On a condition @ every posedge clk my address should get auto incremented and in that auto incremented address i have to store some value. If possible could u please share me a code for this ,Which will be very much useful for me to proceed further. With Regards, V.Mathiazhagan4KViews0likes1CommentAuto increment address in the memory in a verilog program
Hi there, Am a new learner in verilog, So please help me out how to resolve this issue I have created a simple SRAM Module I want to increment my address on posedge of every clock pulse, but i don't know how to do it, so anyone please help me out in resolving this issue I have posted my verilog code too module sramw(dataIn,dataOut,Addr,CE,WE,OE,RD,Clk,RST,//count ); parameter ADR = 19; parameter DAT = 8; parameter DPTH = 524288; //parameter COUNT = 19; input [DAT-1:0] dataIn; output reg [DAT-1:0] dataOut; input [ADR-1:0] Addr; input CE, WE, RD, Clk, RST, OE; //reg Addr //internal variables reg [DAT-1:0] SRAM [DPTH-1:0]; always @ (posedge Clk) begin if (CE == 1'b0) begin if (WE == 1'b0 && RD == 1'b0) begin SRAM [Addr] = dataIn; end else if (RD == 1'b1 && WE == 1'b1) begin dataOut = SRAM [Addr]; end else; end else; end endmodule4.1KViews0likes7CommentsRe: Porting from Xilinx to Altera
Dear Richard Tan, I have once again shared you the project files via ftp. Kindly look into it and let me know if you have any issues regarding the file shared. The file shared is the compiled one, Which is synthesized at my end in vivado 2015.4 version without any runtime error. With Regards, V.Mathiazhagan5.9KViews0likes0Comments