|
Message
From: Michael Geng<vhdl@M...>
Date: Tue Oct 18 19:24:01 CEST 2005
Subject: [oc] single_port: remove PAGENUM constant
Hi Robert,since the single_port model uses unconstrained vectors for the data and address buses the PAGENUM constant is no longer required. I would like to remove it from single_port_pkg completely and replace it in single_port.vhd in the following way:
< TYPE mem_typ IS ARRAY ( 0 TO PAGENUM*PAGEDEPTH-1 ) OF BIT_VECTOR(d'RANGE);
> TYPE mem_typ IS ARRAY ( 0 TO 2**a'length-1 ) OF BIT_VECTOR(d'RANGE);
Is that ok with you?
Michael
|