start integrating gpio / mux bus generation
[pinmux.git] / src / bsv / pinmux_generator.py
index 0bbfc19681c989a027792ed8f64eb89279823977..bfcc09eb2ad7a58a83d9b5769910fd529d0aa1a1 100644 (file)
@@ -304,5 +304,8 @@ endpackage
 def write_bvp(bvp, p, ifaces):
     # ######## Generate bus transactors ################
     with open(bvp, 'w') as bsv_file:
-        bsv_file.write(axi4_lite.format(p.ADDR_WIDTH, p.DATA_WIDTH))
+        gpiodecl = '// TODO'
+        bsv_file.write(axi4_lite.format(p.ADDR_WIDTH, p.DATA_WIDTH,
+                                        0, # USERSPACE
+                                        gpiodecl))
     # ##################################################