Solved
Forum Discussion
YEan
Contributor
4 years agoHi,
You have stored too many data in an address. Here is an example:
DEPTH = 32; -- The size of memory in words WIDTH = 8; -- The size of data in bits ADDRESS_RADIX = HEX; -- The radix for address values DATA_RADIX = BIN; -- The radix for data values CONTENT -- start of (address : data pairs) BEGIN 00 : 00000000; -- memory address : data 01 : 00000001; 02 : 00000010;
.
.
.
END;
Thanks and regards,
Ean