From 0b269f32dd9b8d349f94793dad44e728473e9f0a Mon Sep 17 00:00:00 2001 From: Alex AUVOLAT Date: Thu, 31 Oct 2013 15:35:11 +0100 Subject: First commit ; includes first TP and minijazz compiler --- minijazz/test/tests.mj | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 minijazz/test/tests.mj (limited to 'minijazz/test/tests.mj') diff --git a/minijazz/test/tests.mj b/minijazz/test/tests.mj new file mode 100644 index 0000000..a8f8b63 --- /dev/null +++ b/minijazz/test/tests.mj @@ -0,0 +1,19 @@ +Fulladder(a,b,c) = (s, r) where + s = (a xor b) xor c; + r = (a and b) or ((a xor b) and c); +end where + +minus(x) = (y) where + y = x xor c; + c = reg (x or y) +end where + +cm2(x) = (s, r) where + s = reg (x xor s); + r = x and s +end where + +clk2() = (o) where + o = reg(c); + c = not (reg (o)) +end where \ No newline at end of file -- cgit v1.2.3