Skip to content
Snippets Groups Projects
Commit 097b4717 authored by Kia's avatar Kia
Browse files

in-band signalling strikes again!

parent d06a11cc
No related branches found
No related tags found
No related merge requests found
......@@ -836,7 +836,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)
m.d.comb += doublestacks.side_push_port.eq(serializer.serialized_index | 0x1000)
m.d.comb += doublestacks.command_in_strobe.eq(1)
# m.d.comb += fsm_ready.eq(1)
......@@ -1039,7 +1039,7 @@ class DummyPlug(Elaboratable):
(1, (lambda stackview: FACTOR + extractor(stackview[0])))
]
msm = MasterStateMachine(item_width=16, indices_width=8, stack_depth=10,
msm = MasterStateMachine(item_width=16, indices_width=16, stack_depth=10,
validitem_ruleset = validitem_ruleset,
pairwise_priority_ruleset = pairwise_priority_ruleset,
forceshift_ruleset = forceshift_ruleset,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment