lynxeyedの電音鍵盤

MBDとFPGAと車載で使うデバイスの備忘録

2008-05-01から1ヶ月間の記事一覧

dsPICのC言語を使った掛け算と割り算

PIC

掛け算 long __builtin_mulss(const int p0, const int p1); long __builtin_mulsu(const int p0, const unsigned p1); long __builtin_mulus(const unsigned p0, const int p1); unsigned long __builtin_muluu(const unsigned p0, const unsigned p1); 割…

IMDCT

PIC

http://www.ee.cooper.edu/sprocom/files/ICEEE_07.pdf ↑この記事に触発され、データシートとにらめっこしながらMP3のデコーダを積めないかと模索してました。今のところ、ハフマン符号のテーブルと逆離散コサイン変換テーブルを作ったところで、メモリオー…