From 9ca0b2b84b48759465d99fb68c28f2cd8748b50b Mon Sep 17 00:00:00 2001 From: hneemann Date: Thu, 20 Jul 2017 13:15:15 +0200 Subject: [PATCH] renamed VDD to VCC in power supply --- src/main/java/de/neemann/digital/core/io/PowerSupply.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/de/neemann/digital/core/io/PowerSupply.java b/src/main/java/de/neemann/digital/core/io/PowerSupply.java index 750548daf..f9e41cf27 100644 --- a/src/main/java/de/neemann/digital/core/io/PowerSupply.java +++ b/src/main/java/de/neemann/digital/core/io/PowerSupply.java @@ -20,7 +20,7 @@ public class PowerSupply implements Element { * Enforces a power supply */ public static final ElementTypeDescription DESCRIPTION - = new ElementTypeDescription(PowerSupply.class, input("VCC"), input("GND")) + = new ElementTypeDescription(PowerSupply.class, input("VDD"), input("GND")) .addAttribute(Keys.ROTATE) .addAttribute(Keys.LABEL);