% Memory depth and width are required %
% DEPTH and WIDTH should be entered as decimal numbers %
DEPTH = 32; % DEPTH is the number of addresses %
WIDTH = 14; % WIDTH is the number of bits of data per word %
% Address and value radixes are required %
% valid mnemonics are: BIN, DEC, HEX, OCT%
ADDRESS_RADIX = HEX; % Addresses in hexadecimal format %
DATA_RADIX = HEX; % Data in hexadecimal format %
%Specify values for addresses, which can be single address or range
CONTENT
BEGIN
[0..F]: 3FFF; % Range. At every address from 0 to F the content is 3FFF %
6 : F; % Single addres %
8 : F E 5; % Range starting from specific address %
% Addr[8] = F %
% Addr[9] = E %
% Addr[A] = 5 %
END;
|