Forum Discussion
Altera_Forum
Honored Contributor
21 years agoUsing IDT71V416 as 16-bit RAM
At some point I removed the Nios I dev kit and I went to recompile my design yesterday and it couldn't find the IDT71V016 RAM device. I looked at out board and noticed that we use the 71V416, no...
Altera_Forum
Honored Contributor
21 years agoI added the ram as user logic
(remark one userlogic for both ram chips, this is necessary to get one block of memory for system library properties) PORTNAME WIDTH DIRECTION SHARED TYPE address 19 input yes address write_n 1 input yes write_n read_n 1 input yes read_n data 16 inout yes data chipselect_n 1 input --- chipselect_n be_n 2 input yes byteenable_n I added external logic (one not and two ors's) to generate the two different CS signals SRAM_CS0_N = SRAM_CS or A19 SRAM_CS1_N = SRAM_CS or (not A19) if you want to use only one ram chip, then reduce address to 18 and remove external logic.