corelogic: fix signal exports

This commit is contained in:
Sebastien Bourdeauducq 2011-12-18 21:54:28 +01:00
parent 4f4d809a4e
commit 94c5fba067
2 changed files with 8 additions and 8 deletions

View File

@ -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

View File

@ -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 = []