Forum Discussion
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.