FPGA開発日記

カテゴリ別記事インデックス https://msyksphinz.github.io/github_pages , English Version https://fpgadevdiary.hatenadiary.com/

2025-10-09から1日間の記事一覧

Common CellsのECCデコーダの実装詳細解析:ecc_decodesv の実装詳細

ecc_encode.sv の実装調査を行ったので、今度は ecc_decode.sv の実装調査をしてみる。 基本的には ecc_encode.sv の逆を行っており、問題があればエラーを通知することになる。 module ecc_decode import ecc_pkg::*; #( /// Data width of unencoded word.…