aboutsummaryrefslogtreecommitdiffstats
path: root/techlibs/gowin/brams_init.py
diff options
context:
space:
mode:
Diffstat (limited to 'techlibs/gowin/brams_init.py')
-rwxr-xr-xtechlibs/gowin/brams_init.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/techlibs/gowin/brams_init.py b/techlibs/gowin/brams_init.py
new file mode 100755
index 000000000..b78eb8da5
--- /dev/null
+++ b/techlibs/gowin/brams_init.py
@@ -0,0 +1,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)