rename iec gates to have consistent naming

This commit is contained in:
2025-06-28 12:28:28 -03:00
parent c5e4f8039a
commit ea8277ee5b
7 changed files with 36 additions and 36 deletions

View File

@ -4,7 +4,7 @@
#set page(width: auto, height: auto, margin: .5cm)
#circuit({
element.gate-iec-buf(
element.iec-gate-buf(
x: 0,
y: 0,
w: 2,
@ -14,7 +14,7 @@
)
wire.stub("iec-buf-port-in0", "west")
element.gate-iec-not(
element.iec-gate-not(
x: 3,
y: 0,
w: 2,
@ -24,7 +24,7 @@
)
wire.stub("iec-not-port-in0", "west")
element.gate-iec-and(
element.iec-gate-and(
id: "iec-and",
x: 0,
y: -3,
@ -36,7 +36,7 @@
wire.stub("iec-and-port-in" + str(i), "west")
}
element.gate-iec-nand(
element.iec-gate-nand(
id: "iec-nand",
x: 3,
y: -3,
@ -48,7 +48,7 @@
wire.stub("iec-nand-port-in" + str(i), "west")
}
element.gate-iec-or(
element.iec-gate-or(
id: "iec-or",
x: 0,
y: -6,
@ -60,7 +60,7 @@
wire.stub("iec-or-port-in" + str(i), "west")
}
element.gate-iec-nor(
element.iec-gate-nor(
id: "iec-nor",
x: 3,
y: -6,
@ -72,7 +72,7 @@
wire.stub("iec-nor-port-in" + str(i), "west")
}
element.gate-iec-xor(
element.iec-gate-xor(
id: "iec-xor",
x: 0,
y: -9,
@ -84,7 +84,7 @@
wire.stub("iec-xor-port-in" + str(i), "west")
}
element.gate-iec-nxor(
element.iec-gate-nxor(
id: "iec-nxor",
x: 3,
y: -9,