summaryrefslogtreecommitdiffstats
path: root/quartus/debugger.vhd
diff options
context:
space:
mode:
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');