#ifndef __SYSC_CPU_XOR_HPP #define __SYSC_CPU_XOR_HPP #include "systemc.h" SC_MODULE (cpu_xor) { sc_in in_a; sc_in in_b; sc_out out_c; void do_xor() { out_c.write( (in_a.read()^in_b.read()) ); } SC_CTOR(cpu_xor) { SC_METHOD(do_xor); sensitive << in_a << in_b; } }; #endif