summaryrefslogtreecommitdiffstats
path: root/quartus/debugger.vhd
diff options
context:
space:
mode:
authorJames <james.mckenzie@citrix.com>2013-10-18 12:17:17 +0100
committerJames <james.mckenzie@citrix.com>2013-10-18 12:17:17 +0100
commit3c24b4b41abf56cfd3cdcd998b77514d9ba55a6c (patch)
tree80e482555b70b57e701d603aa352b4ecbd3206c1 /quartus/debugger.vhd
parent2deecc29d2b390a23eeebc54b1db28326b9bcd4e (diff)
downloadbbc_de1-3c24b4b41abf56cfd3cdcd998b77514d9ba55a6c.tar.gz
bbc_de1-3c24b4b41abf56cfd3cdcd998b77514d9ba55a6c.tar.bz2
bbc_de1-3c24b4b41abf56cfd3cdcd998b77514d9ba55a6c.zip
revert fixes
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 d4dfe61..1d78bd5 100644
--- a/quartus/debugger.vhd
+++ b/quartus/debugger.vhd
@@ -213,7 +213,7 @@ begin
end process;
-- Set watchpoint address
- process(CLOCK,nRESET,mode)
+ process(CLOCK,nRESET)
begin
if nRESET = '0' then
watchpoint <= (others => '1');
@@ -232,7 +232,7 @@ begin
end process;
-- Set breakpoint address
- process(CLOCK,nRESET,mode)
+ process(CLOCK,nRESET)
begin
if nRESET = '0' then
breakpoint <= (others => '1');