From 835baba906728e7bfc8023a67fa1e42f6af03ba0 Mon Sep 17 00:00:00 2001 From: FreeArtMan Date: Mon, 15 Oct 2018 20:46:48 +0100 Subject: Add CPU NAND --- cpu8/cpu_nand/cpu_nand.cpp | 70 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 70 insertions(+) create mode 100644 cpu8/cpu_nand/cpu_nand.cpp (limited to 'cpu8/cpu_nand/cpu_nand.cpp') diff --git a/cpu8/cpu_nand/cpu_nand.cpp b/cpu8/cpu_nand/cpu_nand.cpp new file mode 100644 index 0000000..c6c8489 --- /dev/null +++ b/cpu8/cpu_nand/cpu_nand.cpp @@ -0,0 +1,70 @@ +#include +#include + +#include "systemc.h" +#include "systemc" +#include +#include + +#include "cpu_nand.hpp" + +SC_MODULE(test_cpu_nand) +{ + sc_out a,b; + sc_in clk; + + void test_cpu_nand_stim() + { + wait(); + a.write(1); + b.write(1); + wait(); + + a.write(0); + b.write(0); + wait(); + + a.write(1); + b.write(0); + wait(); + + a.write(0); + b.write(1); + wait(); + + sc_stop(); + } + + SC_CTOR(test_cpu_nand) + { + SC_THREAD(test_cpu_nand_stim); + sensitive << clk.pos(); + + } +}; + +int sc_main(int argc, char **argv) { + sc_signal sig_a, sig_b, sig_c; + sc_clock TestClk("TestClk", 10, SC_NS, 0.5, 1, SC_NS); + + test_cpu_nand Stim1("Stimulus"); + Stim1.a(sig_a); + Stim1.b(sig_b); + Stim1.clk(TestClk); + + cpu_nand DUT("nand"); + DUT.in_a(sig_a); + DUT.in_b(sig_b); + DUT.out_c(sig_c); + + sc_trace_file *Tf; + Tf = sc_create_vcd_trace_file("trace_cpu_nand.dat"); + sc_trace(Tf, sig_a, "IN_A"); + sc_trace(Tf, sig_b, "IN_B"); + sc_trace(Tf, sig_c, "SIG_C"); + + sc_start(); + sc_close_vcd_trace_file(Tf); + + return(0); +} \ No newline at end of file -- cgit v1.2.3