Commit 94c5fba0 authored by Sebastien Bourdeauducq's avatar Sebastien Bourdeauducq
Browse files

corelogic: fix signal exports

parent 4f4d809a
......@@ -4,12 +4,12 @@ class Inst:
def __init__(self, w):
self.w = w
start_i = Signal()
dividend_i = Signal(BV(w))
divisor_i = Signal(BV(w))
ready_o = Signal()
quotient_o = Signal(BV(w))
remainder_o = Signal(BV(w))
self.start_i = Signal()
self.dividend_i = Signal(BV(w))
self.divisor_i = Signal(BV(w))
self.ready_o = Signal()
self.quotient_o = Signal(BV(w))
self.remainder_o = Signal(BV(w))
def get_fragment(self):
w = self.w
......
......@@ -4,8 +4,8 @@ class Inst:
def __init__(self, n):
self.n = n
self.bn = bits_for(self.n-1)
request = Signal(BV(self.n))
grant = Signal(BV(self.bn))
self.request = Signal(BV(self.n))
self.grant = Signal(BV(self.bn))
def get_fragment(self):
cases = []
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment