我用MAST写了一个反相器的模块,如下
template inverter in out
state logic_4 in, out
{
when (event_on(in)) {
if (in == l4_0) schedule_event(time, out, l4_1)
else if (in == l4_1) schedule_event(time, out, l4_0)
else if (in == l4_x) schedule_event(time, out, l4_x)
}
}
画了一个symbol,一个入口in,一个出口out,在仿真时总是出现can not find "ide_a2dn.sin" using "saber_data_path"和undefined template ide_a2dn.sin,我搜索整个目录也没有发现这个template,敬请指教.