From 0845641994594fd3eb0da6ac22cd1fa4c152b2ae Mon Sep 17 00:00:00 2001 From: Thomas <th2g20@soton.ac.uk> Date: Mon, 1 May 2023 14:59:06 +0100 Subject: [PATCH] Added SImple XOrGate --- XOrGate.tsl | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 XOrGate.tsl diff --git a/XOrGate.tsl b/XOrGate.tsl new file mode 100644 index 0000000..3e43351 --- /dev/null +++ b/XOrGate.tsl @@ -0,0 +1,9 @@ +t1 << tile1; +t2 << tile2; + +t3 = not t1; +t4 = not t2; +t5 = and t1 t4; +t6 = and t3 t2; +t7 = or t5 t6; + -- GitLab