diff options
Diffstat (limited to 'tb/sim/sdram.py')
| -rw-r--r-- | tb/sim/sdram.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tb/sim/sdram.py b/tb/sim/sdram.py new file mode 100644 index 0000000..2225941 --- /dev/null +++ b/tb/sim/sdram.py @@ -0,0 +1,8 @@ +START = 0x0000_1000 +END = 0x0000_2000 + +cycles = 15000 +mem_dumps = [range(START, END)] + +def final(): + assert_mem(START, list(range(0, (END - START) >> 2))) |
