Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

Using a memory initialization file

857 views
Skip to first unread message

Walther

unread,
Feb 16, 2009, 3:22:34 PM2/16/09
to
I apologize in advance for what is probably a really stupid beginners
question.

I am currently busy with an assignment for my one course. We are
required to implement the RiSC-16 sequential CPU in VHDL using Quartus
II. We are however not allowed to use megafunctions or other altera
supplied libraries.

Now, my CPU is pretty much done. I am however struggling to figure out
how to link a MIF file to a specific memory component (Namely to my
instruction memory component).

Does anybody know how to do this, and could you please give a nice
step by step explanation on how to do it.

Thanks in advance.
Walther

Aiken

unread,
Feb 16, 2009, 4:48:54 PM2/16/09
to
do you do it in your simulation program for example Modelsim.
After you start your simluation at time "0". you can update the memory
content.

Aiken

Mike Treseler

unread,
Feb 16, 2009, 6:30:58 PM2/16/09
to
Walther wrote:

> I am currently busy with an assignment for my one course. We are
> required to implement the RiSC-16 sequential CPU in VHDL using Quartus
> II. We are however not allowed to use megafunctions or other altera
> supplied libraries.

That is a good thing.
You won't learn to write code using megafunctions.

> Now, my CPU is pretty much done. I am however struggling to figure out
> how to link a MIF file to a specific memory component (Namely to my
> instruction memory component).

Maybe you don't need a mif file.
Why not infer a rom from a vhdl constant array?
Something like this
http://mysite.verizon.net/miketreseler/sync_rom.vhd

-- Mike Treseler

Walther

unread,
Feb 17, 2009, 1:43:54 AM2/17/09
to

Thanks Mike

That is what I'm currently doing to test the CPU. However, I would
like to be able to easily load other test programs without needing to
retype all the instructions and recompiling. If I can't initialise the
memory from an external file, then it's not a train smash, but it
would make verification and simulation much easier.

Walther

Tricky

unread,
Feb 17, 2009, 4:12:25 AM2/17/09
to

Then you will probably have to write a script to write the constant
array for you, to then copy/paste into your code - or for even more
clvereness, actaully re-write the constant declaration for you inside
the VHDL.

Otherwise, you will have to write your own MIF interpreter, which will
probably be just as involved as the above idea.

Barry

unread,
Feb 17, 2009, 12:36:50 PM2/17/09
to

I only used a mif file once, when I used Xilinx CoreGen to create a
ROM. I just dragged the mif file into my testbench directory (which
is the directory I opened in ModelSim to run the simulation), and it
picked up the mif file automatically.

Barry

PlayDough

unread,
Feb 17, 2009, 1:15:03 PM2/17/09
to
On Feb 17, 1:12 am, Tricky <Trickyh...@gmail.com> wrote:
> Then you will probably have to write a script to write the constant
> array for you, to then copy/paste into your code - or for even more
> clvereness, actaully re-write the constant declaration for you inside
> the VHDL.

Or rather, write a Perl script or C program to convert the MIF into a
format that is easy to import. It is quite easy to write some VHDL to
read in a simple list of vectors from a file to populate your RAM. I
recommend you look at the source code for the Altera primitive RAM
models. I've never used Altera, but both Xilinx and Actel models are
capable of being initialized from a file, and the code is very easy to
understand.

I've never heard of MIF until this thread, but it looks very easy to
parse. (I used the reference at the Altera site:
http://www.altera.com/support/software/nativelink/quartus2/glossary/def_mif.html).
And considering that Altera is the source, their models probably read
MIF files. So you can scab the code from their models.

> Otherwise, you will have to write your own MIF interpreter, which will
> probably be just as involved as the above idea.

Doing this in VHDL/Verilog (though perhaps with the PLI it could be
fairly simple) would be more difficult than a Perl script/C code to
generate the constant table. For a class, I recommend a script based
approach.

Pete

Amal

unread,
Feb 18, 2009, 10:31:40 AM2/18/09
to
On Feb 17, 1:15 pm, PlayDough <pla...@gmail.com> wrote:
> On Feb 17, 1:12 am, Tricky <Trickyh...@gmail.com> wrote:
>
> > Then you will probably have to write a script to write the constant
> > array for you, to then copy/paste into your code - or for even more
> > clvereness, actaully re-write the constant declaration for you inside
> > the VHDL.
>
> Or rather, write a Perl script or C program to convert the MIF into a
> format that is easy to import.  It is quite easy to write some VHDL to
> read in a simple list of vectors from a file to populate your RAM.  I
> recommend you look at the source code for the Altera primitive RAM
> models.  I've never used Altera, but both Xilinx and Actel models are
> capable of being initialized from a file, and the code is very easy to
> understand.
>
> I've never heard of MIF until this thread, but it looks very easy to
> parse.  (I used the reference at the Altera site:http://www.altera.com/support/software/nativelink/quartus2/glossary/d...).

> And considering that Altera is the source, their models probably read
> MIF files.  So you can scab the code from their models.
>
> > Otherwise, you will have to write your own MIF interpreter, which will
> > probably be just as involved as the above idea.
>
> Doing this in VHDL/Verilog (though perhaps with the PLI it could be
> fairly simple) would be more difficult than a Perl script/C code to
> generate the constant table.  For a class, I recommend a script based
> approach.
>
> Pete

If you are using Synplicity and do not mind using Verilog for your
ROMs, you can use $readmemb, $readmemh tasks in an initial block to
read the contents of ROM from the file. This way you can have a
portable ROM implementation between FPGA and ASIC versions. For FPGA
version, $readmemb, and $redmemh use the same memory data file as your
ASIC foundry's ROM data file.

Check and see if Quartus supports $readmemb or $readmemh for
synthesis.

-- Amal

Walther

unread,
Feb 19, 2009, 12:47:49 PM2/19/09
to

Thanks for all the help. I decided to write a little script that
transforms the output of the assembler into a VHDL array format.

Works quite well.

Amal: We have to use Quartus, and VHDL (No Verilog)

- Walther

Alan Fitch

unread,
Feb 27, 2009, 6:18:51 AM2/27/09
to

The other approach is to initialize from the return value of a function
- however I don't know if quartus supports that.

E.g.

myram : ramT := readmif("miffile");

where you have to write the function readmif,

If it works in quartus, this would be a pure VHDL solution,


regards
Alan

--
Alan Fitch
Doulos
http://www.doulos.com

0 new messages