summaryrefslogtreecommitdiffstats
path: root/quartus/debugger.vhd
diff options
context:
space:
mode:
authorJames <james.mckenzie@citrix.com>2013-10-18 12:19:09 +0100
committerJames <james.mckenzie@citrix.com>2013-10-18 12:19:09 +0100
commitd8b2c4c49c778a36d306ee02b7fefe53a4cbb32c (patch)
tree3d962748e9d7bea2e10c978ce833091ece6168dc /quartus/debugger.vhd
parent3c24b4b41abf56cfd3cdcd998b77514d9ba55a6c (diff)
downloadbbc_de1-d8b2c4c49c778a36d306ee02b7fefe53a4cbb32c.tar.gz
bbc_de1-d8b2c4c49c778a36d306ee02b7fefe53a4cbb32c.tar.bz2
bbc_de1-d8b2c4c49c778a36d306ee02b7fefe53a4cbb32c.zip
Revert "revert fixes"
This reverts commit 3c24b4b41abf56cfd3cdcd998b77514d9ba55a6c.
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');