From e501f4f14743af0b0a1f15fb3ec4c03fa5d59b06 Mon Sep 17 00:00:00 2001 From: Alexander Oh Date: Thu, 27 May 2010 01:37:31 +0200 Subject: [PATCH] added pc-communication to history --- src/calc.vhd | 9 ++++++++- src/history.vhd | 6 ++++-- 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/src/calc.vhd b/src/calc.vhd index 2175ee9..d398bd3 100644 --- a/src/calc.vhd +++ b/src/calc.vhd @@ -141,7 +141,14 @@ begin p_wtake => p_wtake, p_wdone => p_wdone, p_write => p_write, - p_finished => p_finished + p_finished => p_finished, + -- pc communication + pc_get => '0', + pc_spalte => (others => '0'), + pc_zeile => (others => '0'), + pc_char => open, + pc_done => open + ); -- parser diff --git a/src/history.vhd b/src/history.vhd index 1cac445..424d0c9 100644 --- a/src/history.vhd +++ b/src/history.vhd @@ -74,6 +74,8 @@ begin p_rdone <= p_rdone_int; p_wdone <= p_wdone_int; p_read <= p_read_int; + pc_done <= pc_done_int; + pc_char <= pc_char_int; process(sys_clk, sys_res_n) begin @@ -237,8 +239,8 @@ begin wr_next <= '0'; address_next <= address_int; data_in_next <= data_in_int; - pc_done <= '0'; - pc_char <= (others => '0'); + pc_done_next <= '0'; + pc_char_next <= pc_char_int; --(others => '0'); p_rdone_next <= p_rdone_int; p_wdone_next <= p_wdone_int; p_read_next <= p_read_int; -- 2.25.1