From 12fc1ad7e759715a11776298f6da6d946d75bbd1 Mon Sep 17 00:00:00 2001 From: David Phillips Date: Thu, 28 Dec 2017 19:30:16 +1300 Subject: Add self-test for not logic --- logic.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/logic.c b/logic.c index a4f834e..a9f09da 100644 --- a/logic.c +++ b/logic.c @@ -97,6 +97,12 @@ logic_test_nor() { assert(LOGIC_LOW == logic_nor(LOGIC_HIGH, LOGIC_HIGH)); } +void +logic_test_not() { + emit_info("Testing NOT\n"); + assert(LOGIC_HIGH == logic_not(LOGIC_LOW )); + assert(LOGIC_LOW == logic_not(LOGIC_HIGH)); +} void logic_test() { @@ -105,4 +111,5 @@ logic_test() { logic_test_nand(); logic_test_nor(); logic_test_xor(); + logic_test_not(); } -- cgit v1.1