summaryrefslogtreecommitdiffstats
path: root/quartus/debugger.vhd
diff options
context:
space:
mode:
authorroot <root@lab.panaceas.james.local>2013-10-18 11:18:51 +0100
committerroot <root@lab.panaceas.james.local>2013-10-18 11:18:51 +0100
commit91a541897b9e66b107a1017d5cadcc89ce1e7f84 (patch)
treead5e26840b3674c33b67d15b419ade7b3fe6b8f0 /quartus/debugger.vhd
parent5fe74b3778ec4f58f628a6f140af1e9fa9a08eac (diff)
downloadbbc_de1-91a541897b9e66b107a1017d5cadcc89ce1e7f84.tar.gz
bbc_de1-91a541897b9e66b107a1017d5cadcc89ce1e7f84.tar.bz2
bbc_de1-91a541897b9e66b107a1017d5cadcc89ce1e7f84.zip
add process sensitivity
Diffstat (limited to 'quartus/debugger.vhd')
-rw-r--r--quartus/debugger.vhd4
1 files changed, 2 insertions, 2 deletions
diff --git a/quartus/debugger.vhd b/quartus/debugger.vhd
index 1d78bd5..d4dfe61 100644
--- a/quartus/debugger.vhd
+++ b/quartus/debugger.vhd
@@ -213,7 +213,7 @@ begin
end process;
-- Set watchpoint address
- process(CLOCK,nRESET)
+ process(CLOCK,nRESET,mode)
begin
if nRESET = '0' then
watchpoint <= (others => '1');
@@ -232,7 +232,7 @@ begin
end process;
-- Set breakpoint address
- process(CLOCK,nRESET)
+ process(CLOCK,nRESET,mode)
begin
if nRESET = '0' then
breakpoint <= (others => '1');