Does more work on circuits.

This commit is contained in:
Neerti
2016-08-06 09:56:16 -04:00
parent 94e3e688cc
commit 4efd5c4af6
12 changed files with 756 additions and 16 deletions

View File

@@ -72,6 +72,7 @@
O.data = 1
O.push_data()
A.push_data()
P.push_data()
else
O.data = 0
@@ -90,6 +91,7 @@
O.data = 1
O.push_data()
A.push_data()
P.push_data()
else
O.data = 0
@@ -108,6 +110,7 @@
O.data = 1
O.push_data()
A.push_data()
P.push_data()
else
O.data = 0
@@ -126,6 +129,7 @@
O.data = 1
O.push_data()
A.push_data()
P.push_data()
else
O.data = 0
@@ -134,7 +138,7 @@
desc = "This will output 'one' if the first input is greater than the second input."
icon_state = "greater_than"
/obj/item/integrated_circuit/logic/geater_than/work()
/obj/item/integrated_circuit/logic/greater_than/work()
..()
var/datum/integrated_io/A = inputs[1]
var/datum/integrated_io/B = inputs[2]
@@ -144,6 +148,7 @@
O.data = 1
O.push_data()
A.push_data()
P.push_data()
else
O.data = 0
@@ -162,5 +167,6 @@
O.data = 1
O.push_data()
A.push_data()
P.push_data()
else
O.data = 0