From 7a9a54c68555b1b668636ed69448f5324c8e364e Mon Sep 17 00:00:00 2001 From: NotAFile Date: Fri, 14 Jan 2022 15:28:39 +0100 Subject: [PATCH] add more builtin cells --- src/builtin_cells.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/builtin_cells.rs b/src/builtin_cells.rs index 289b662..d8de9ae 100644 --- a/src/builtin_cells.rs +++ b/src/builtin_cells.rs @@ -53,6 +53,8 @@ fn make_binop_callable(name: &str, celltype: &'static str) -> Callable { pub fn get_builtins() -> Vec { vec![ make_binop_callable("and", "$and"), + make_binop_callable("or", "$or"), make_binop_callable("xor", "$xor"), + make_binop_callable("xnor", "$xnor"), ] }