From 6b36a1a2688d44f368f83e91ec9caa900193917f Mon Sep 17 00:00:00 2001
From: Kia <kia@special-circumstanc.es>
Date: Sat, 30 May 2020 16:08:48 -0600
Subject: [PATCH] add FIXME for a hardcoded value

---
 combinatorial_LR_parser.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/combinatorial_LR_parser.py b/combinatorial_LR_parser.py
index 7e801f4..fe32066 100644
--- a/combinatorial_LR_parser.py
+++ b/combinatorial_LR_parser.py
@@ -839,7 +839,7 @@ class MasterStateMachine(Elaboratable):
                 with m.If(number_to_pop == 0):
                     m.d.comb += doublestacks.command_in.eq(2)
                     m.d.comb += doublestacks.big_push_port.eq(execution_result)
-                    m.d.comb += doublestacks.side_push_port.eq(serializer.serialized_index | 0x1000)
+                    m.d.comb += doublestacks.side_push_port.eq(serializer.serialized_index | 0x1000) #FIXME
                     m.d.comb += doublestacks.command_in_strobe.eq(1)
 
 #                    m.d.comb += fsm_ready.eq(1)
-- 
GitLab