sc_clock.cc (12841:22aa7ba47bf9) sc_clock.cc (12878:97fdce181f51)
1/*
2 * Copyright 2018 Google, Inc.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are
6 * met: redistributions of source code must retain the above copyright
7 * notice, this list of conditions and the following disclaimer;
8 * redistributions in binary form must reproduce the above copyright

--- 51 unchanged lines hidden (view full) ---

60
61sc_clock::sc_clock(const char *name, double period_v, sc_time_unit period_tu,
62 double duty_cycle, double start_time_v,
63 sc_time_unit start_time_tu, bool posedge_first)
64{
65 warn("%s not implemented.\n", __PRETTY_FUNCTION__);
66}
67
1/*
2 * Copyright 2018 Google, Inc.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are
6 * met: redistributions of source code must retain the above copyright
7 * notice, this list of conditions and the following disclaimer;
8 * redistributions in binary form must reproduce the above copyright

--- 51 unchanged lines hidden (view full) ---

60
61sc_clock::sc_clock(const char *name, double period_v, sc_time_unit period_tu,
62 double duty_cycle, double start_time_v,
63 sc_time_unit start_time_tu, bool posedge_first)
64{
65 warn("%s not implemented.\n", __PRETTY_FUNCTION__);
66}
67
68sc_clock::sc_clock(const char *name, double period, double duty_cycle,
69 double start_time, bool posedge_first)
70{
71 warn("%s not implemented.\n", __PRETTY_FUNCTION__);
72}
73
68sc_clock::~sc_clock() {}
69
70void
71sc_clock::write(const bool &)
72{
73 warn("%s not implemented.\n", __PRETTY_FUNCTION__);
74}
75

--- 33 unchanged lines hidden ---
74sc_clock::~sc_clock() {}
75
76void
77sc_clock::write(const bool &)
78{
79 warn("%s not implemented.\n", __PRETTY_FUNCTION__);
80}
81

--- 33 unchanged lines hidden ---