All Posts

ファイルを16進数でダンプする方法

  • 時々使うのでメモ。
    PNGファイルの場合、先頭から8byteに以下のようにヘッダーが入っている。 これを使って、検証しておく。

    #16進数
    89 50 4E 47 0D 0A 1A 0A
    #10進数
    137 80 78 71 13 10 26 10
    

    ioread/iowrite vs read/write vs read_relaxed/write_relaxedの違い

  • Linuxのドライバで使われるioread/iowrite、read/write、read_relaxed/write_relaxedの違い

    request_irqとdevm_request_irqの違い

  • IRQは、interrupt requestの略です。Linuxのドライバで使われるrequest_irqとdevm_request_irqの