Remove Constant

This commit is contained in:
Sebastien Bourdeauducq 2012-11-28 23:18:53 +01:00
parent 79e5f24a65
commit 7e2bc00c0a
4 changed files with 10 additions and 11 deletions

View File

@ -31,7 +31,7 @@ class _AddressSlicer:
if isinstance(address, int): if isinstance(address, int):
return (address & (2**self._b1 - 1)) << self.address_align return (address & (2**self._b1 - 1)) << self.address_align
else: else:
return Cat(Constant(0, BV(self.address_align)), address[:self._b1]) return Cat(Replicate(0, self.address_align), address[:self._b1])
class _Selector: class _Selector:
def __init__(self, slicer, bankn, slots): def __init__(self, slicer, bankn, slots):

View File

@ -71,7 +71,7 @@ class _Steerer:
sync = [] sync = []
def stb_and(cmd, attr): def stb_and(cmd, attr):
if not hasattr(cmd, "stb"): if not hasattr(cmd, "stb"):
return Constant(0) return 0
else: else:
return cmd.stb & getattr(cmd, attr) return cmd.stb & getattr(cmd, attr)
for phase, sel in zip(self.dfi.phases, self.sel): for phase, sel in zip(self.dfi.phases, self.sel):

View File

@ -21,7 +21,7 @@ class UART:
enable16 = Signal() enable16 = Signal()
enable16_counter = Signal(BV(16)) enable16_counter = Signal(BV(16))
comb = [ comb = [
enable16.eq(enable16_counter == Constant(0, BV(16))) enable16.eq(enable16_counter == 0)
] ]
sync = [ sync = [
enable16_counter.eq(enable16_counter - 1), enable16_counter.eq(enable16_counter - 1),
@ -43,7 +43,7 @@ class UART:
self.tx.eq(0) self.tx.eq(0)
).Elif(enable16 & tx_busy, ).Elif(enable16 & tx_busy,
tx_count16.eq(tx_count16 + 1), tx_count16.eq(tx_count16 + 1),
If(tx_count16 == Constant(0, BV(4)), If(tx_count16 == 0,
tx_bitcount.eq(tx_bitcount + 1), tx_bitcount.eq(tx_bitcount + 1),
If(tx_bitcount == 8, If(tx_bitcount == 8,
self.tx.eq(1) self.tx.eq(1)

13
top.py
View File

@ -97,14 +97,13 @@ def get():
cpu0.ibus, cpu0.ibus,
cpu0.dbus cpu0.dbus
], [ ], [
(binc("000"), norflash0.bus), (lambda a: a[26:29] == 0, norflash0.bus),
(binc("001"), sram0.bus), (lambda a: a[26:29] == 1, sram0.bus),
(binc("011"), minimac0.membus), (lambda a: a[26:29] == 3, minimac0.membus),
(binc("10"), wishbone2asmi0.wishbone), (lambda a: a[27:29] == 2, wishbone2asmi0.wishbone),
(binc("11"), wishbone2csr0.wishbone) (lambda a: a[27:29] == 3, wishbone2csr0.wishbone)
], ],
register=True, register=True)
offset=1)
# #
# CSR # CSR