-------------------------------------------------- -- Model : 8051 Behavioral Model, -- VHDL Entity mc8051.dptr_reg.generatedInstance -- -- Author : Michael Mayer (mrmayer@computer.org), -- Dr. Hardy J. Pottinger, -- Department of Electrical Engineering -- University of Missouri - Rolla -- -- Created at : 09/22/98 19:33:01 -- LIBRARY ieee ; USE ieee.std_logic_1164.all; USE ieee.numeric_std.all; LIBRARY mc8051 ; USE mc8051.synth_pack.all; ENTITY dptr_reg IS PORT( addr_gb : IN std_logic_vector( 7 DOWNTO 0 ) ; indirect_sel : IN std_logic ; int_clk : IN std_logic ; int_rst : IN std_logic ; rd_gb : IN std_logic ; wr_gb : IN std_logic ; acknow : OUT std_logic ; dptr : OUT std_logic_vector( 15 DOWNTO 0 ) ; data_gb : INOUT std_logic_vector( 7 DOWNTO 0 ) ); END dptr_reg ; -- -- Auto generated dummy architecture for leaf level instance. -- ARCHITECTURE generatedInstance OF dptr_reg IS BEGIN END generatedInstance ;