

Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
Instructions on how to create a rom using quartus software for electrical and computer engineering students at the university of florida. It covers creating a new project, adding an lpm_rom component, defining the device family, setting the width and depth, creating a mif file, and simulating the design. The document also includes important notes on simulation and timing.
Typology: Study Guides, Projects, Research
1 / 3
This page cannot be seen from the preview
Don't miss anything!


VCC
A[9..0] INPUT
OUTPUT D[7..0]
inst
10
DEPTH = 1024; % Memory depth and width are required % WIDTH = 8; % Enter decimal numbers for each %
ADDRESS_RADIX = HEX; % Address and value radixes are optional % DATA_RADIX = HEX; % Enter BIN, DEC, HEX, or OCT; unless % % otherwise specified, radixes = HEX %
-- Specify values for addresses, which can be single address or range
CONTENT BEGIN
[0..F] : 0; % First 16 values are zero % 10 : 33; % Single address data % 11 : 5C; % Addr[11] = 5C % 12 : 99; 13 : A1; % Addr[13] = A1 % 14 : B2; 15 : C3; 16 : D4; % Addr[16] = D4 % [17..3FF] : FF; % remaining locations are FF % END ; % You must have END statement! %