fix bug that removed stop requests

This commit is contained in:
Fischer Moseley 2023-04-14 17:06:39 -04:00
parent a2ad90a66a
commit 7bec8b15c8
2 changed files with 1 additions and 6 deletions

View File

@ -546,6 +546,7 @@ class LogicAnalyzerCore:
# load source files
hdl = self.gen_logic_analyzer_def() + "\n"
hdl += VerilogManipulator("logic_analyzer_controller.v").get_hdl() + "\n"
hdl += VerilogManipulator("logic_analyzer_fsm_registers.v").get_hdl() + "\n"
hdl += VerilogManipulator("block_memory.v").get_hdl() + "\n"
hdl += VerilogManipulator("dual_port_bram.v").get_hdl() + "\n"
hdl += self.gen_trigger_block_def() + "\n"

View File

@ -84,13 +84,7 @@ module logic_analyzer_controller (
end
end
else if(state == CAPTURED) begin
// actually nothing to do here doooodeeedoooo
end
else if(request_stop && ~prev_request_stop) state <= IDLE;
else state <= IDLE;
end