7
First example: RAM plus counter circuit

prepared by P. Bakowski


Introduction

The main aim of this example is to show how to build packages with necessary types and functions. The second aim is to illustrate how construct the system from the provided components (entities).
The example illustrates a simple two-component system incorporating one memory block and one counter unit.

Contents: specification , requirements, development, package, RAM component, incrementer component, system


RTL level system "specification"

The system is built from two components: a RAM memory block and an incrementer. The incrementer reads sequentially all memory words and increments them. This  incrementation cycle is repeated ad infinitum  modulo 2 word_size.
 

Requirements

The interconnection of the components requires the introduction of at least three-state logic including a high-impedance state - 'Z' and a bus resolution function. The use of the incrementation operation on bit_vectors with different sizes necessitates the use of a generic increment function. The example starts with a simple TSL package for Three State Logic system which needs to be developed in order to provide the required types and functions. This package contains the declaration of a set of logic values (0,1,Z) and several data types necessary to construct bus resolution function BUSFUNC . Remark:

The BUSFUNC displays a message if more then one active signal sources ('0' or '1') are detected.
 

Development path

Develop the above package adding three-state to binary and binary to three-state conversion functions. Then develop binary to integer conversion function - necessary to produce integer value (index)  from bit_vector address.

Use the above package to design a small system with 2 components:


Example of complet  package STSL:

-- the functions necessary to perform the conversion of logic types
-- and operations on addresses :  to_mvl, to_bit, increment, to_int

RAM memory entity

RAM memory entity has three  inputs:

Incrementer entity

Incrementer entity has three outputs:

System entity

System entity has one input Go ; it activates the system-incrementer when set to '0'