Altera_Forum
Honored Contributor
14 years agoabout mif file question
Hello All advanced:
i created a Block RAM IP from MegaWizard,and addition a XX.mif to RAM for initial value,and gererator XX.pof after compilation xx.mif content as below: WIDTH=16; DEPTH=1; ADDRESS_RADIX=UNS; DATA_RADIX=HEX; CONTENT BEGIN 0 : 1234;END; 1.i programming XX.pof to EPCS,and restart power,then FPGA working Ok, and read XX.mif value is 16'h1234(that is correct) 2.i modify XX.mif value as below,and gererator new XX.pof after re-compilation WIDTH=16; DEPTH=1; ADDRESS_RADIX=UNS; DATA_RADIX=HEX; CONTENT BEGIN 0 : aabb;
END; 3.i programming new XX.pof to EPCS,and restart power,then FPGA working Ok,but read XX.mif value is 16'h1234 rather than 16'aabb so how to solve this problem?