Skip to content

Commit

Permalink
Fix script
Browse files Browse the repository at this point in the history
  • Loading branch information
mmicko committed Dec 18, 2024
1 parent de2d551 commit 2b038fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion himbaechel/uarch/gatemate/gen/arch_gen.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def main():
tt.create_wire(wire.name, wire.type)
for prim in die.get_primitives_for_type(type_name):
bel = tt.create_bel(prim.name, prim.type, prim.z)
for pin in die.get_primitive_pins(prim.name):
for pin in die.get_primitive_pins(prim.type):
tt.add_bel_pin(bel, pin.name, f"{prim.name}.{pin.name}", pin.dir)
for mux in die.get_mux_connections_for_type(type_name):
pp = tt.create_pip(mux.src, mux.dst)
Expand Down

0 comments on commit 2b038fa

Please sign in to comment.