From 8b96e99d5019a8e67ba1d633fddd7a9ef050654a Mon Sep 17 00:00:00 2001
From: mindchasers <privateisland@mindchasers.com>
Date: Tue, 2 Mar 2021 13:07:30 -0500
Subject: pkt_filter: add wire for match

---
 source/pkt_filter.v | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

(limited to 'source')

diff --git a/source/pkt_filter.v b/source/pkt_filter.v
index e632d32..9140c74 100644
--- a/source/pkt_filter.v
+++ b/source/pkt_filter.v
@@ -1,7 +1,7 @@
 /* 
  *	pkt_filter.v
  *
- *   Copyright (C) 2018, 2019 Mind Chasers Inc.
+ *   Copyright 2018, 2019, 2020, 2021 Mind Chasers Inc.
  *
  *   Licensed under the Apache License, Version 2.0 (the "License");
  *   you may not use this file except in compliance with the License.
@@ -48,7 +48,8 @@ module pkt_filter #(parameter DEPTH = 4,
 	output reg keep
 );
 
-reg trigger_m1;
+reg trigger_m1;		  
+wire match;
 
 
 /* trigger_m1 is used to sync the CAM search with testing the results below */
@@ -91,3 +92,4 @@ cam  #(.DEPTH(DEPTH), .DEPTHW(DEPTHW), .WIDTH(WIDTH)) cam_0(
 	
 	
 endmodule
+
-- 
cgit v1.2.3-8-gadcc