From 3b646fef820e64c66c0ef563ebb1a09217be2bb7 Mon Sep 17 00:00:00 2001 From: sorgelig Date: Mon, 20 Aug 2018 05:10:22 +0800 Subject: [PATCH] T80pa: add default values for some signals for easier connections. --- t80/T80pa.vhd | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/t80/T80pa.vhd b/t80/T80pa.vhd index ef07433..cb3d146 100644 --- a/t80/T80pa.vhd +++ b/t80/T80pa.vhd @@ -65,12 +65,12 @@ entity T80pa is port( RESET_n : in std_logic; CLK : in std_logic; - CEN_p : in std_logic; - CEN_n : in std_logic; - WAIT_n : in std_logic; - INT_n : in std_logic; - NMI_n : in std_logic; - BUSRQ_n : in std_logic; + CEN_p : in std_logic := '1'; + CEN_n : in std_logic := '1'; + WAIT_n : in std_logic := '1'; + INT_n : in std_logic := '1'; + NMI_n : in std_logic := '1'; + BUSRQ_n : in std_logic := '1'; M1_n : out std_logic; MREQ_n : out std_logic; IORQ_n : out std_logic;