aboutsummaryrefslogtreecommitdiffstats
path: root/techlibs/gowin/brams_init.py
blob: b78eb8da5686bbb6b73240913bdbfb822baf45d2 (plain)
1
2
3
4
5
6
7
8
#!/usr/bin/env python3

with open("techlibs/gowin/bram_init_16.vh", "w") as f:
    for i in range(0, 0x40):
        low = i << 8
        hi = ((i+1) << 8)-1
        snippet = "INIT[%d:%d]" % (hi, low)
        print(".INIT_RAM_%02X({%s})," % (i, snippet), file=f)