litex/examples/sim/memory.py

27 lines
696 B
Python
Raw Normal View History

from migen import *
2012-03-06 13:29:39 -05:00
2015-04-13 14:45:35 -04:00
class Mem(Module):
def __init__(self):
# Initialize the beginning of the memory with integers
# from 0 to 19.
self.specials.mem = Memory(16, 2**12, init=list(range(20)))
2014-10-17 05:08:37 -04:00
2015-09-20 02:52:26 -04:00
def memory_test(dut):
# write (only first 5 values)
for i in range(5):
yield dut.mem[i], 42 + i
# remember: values are written after the tick, and read before the tick.
# wait one tick for the memory to update.
yield
# read what we have written, plus some initialization data
for i in range(10):
value = yield dut.mem[i]
print(value)
2015-09-20 02:52:26 -04:00
2012-03-06 13:29:39 -05:00
2014-01-26 16:19:43 -05:00
if __name__ == "__main__":
2015-09-20 02:52:26 -04:00
dut = Mem()
Simulator(dut, memory_test(dut)).run()