2012-12-18から1日間の記事一覧

Vim:BlueFeatherとQuickrun

本ブログは Markdown形式で書いているのですが、 HTMLに変換する際には BlueClothを使っていました。 しかし、表組みなどは標準の Markdownではサポートされていません。 はなてブログだと表組みとか「Markdown Extra」を元にしているということで、 BlueClo…

SystemCの thread(process) を理解しよう

今回は、SystemCで記述する際に肝となるthread(process)の話です。 まずは、サンプルコードを見てください。 サンプルコード #include <systemc.h> SC_MODULE( hoge ){ sc_in <bool > clk; sc_in <bool > xrst; sc_in <sc_uint<32> > indata1; sc_in <sc_uint<32> > indata2; sc_out <sc_uint<64> > outdata_met; sc_out <sc_uint<64> ></sc_uint<64></sc_uint<64></sc_uint<32></sc_uint<32></bool></bool></systemc.h>…