STOC (SpecC Technology Open Consortium)第4回総会議案の承認終了のお知らせ。
fsmd(CLK) { unsigned bit [31:0] Data; // unmapped variable unsigned bit [31:0] Ocount; { Outport = 0; Done = 0; } // 初期値の設定 if (RST) { State = S0; } // reset時の動作の記述 S0 : { Done = 0; // 各状態での動作の記述 if (Start != 0) goto S1; // 状態遷移 else goto S0; } S1 : { Data = Inport; goto S2; } S2 : … }