このブログは、旧・はてなダイアリー「檜山正幸のキマイラ飼育記 メモ編」(http://d.hatena.ne.jp/m-hiyama-memo/)のデータを移行・保存したものであり、今後(2019年1月以降)更新の予定はありません。

今後の更新は、新しいブログ http://m-hiyama-memo.hatenablog.com/ で行います。

バイナリモドキ修正

バイナリモドキを少し修正。

  1. 2進数はなくてもいいや。
  2. ニブル単位ではなくて、常にバイト単位で扱う。


Hex ::= [1-9A-Za-z]
S ::= LF | CR | TAB | SPACE
D ::= S | ','
Hex2 ::= Hex Hex
Char ::= "'" [^\]
EscapedChar ::= "'" '\'' [stnr']
Byte ::= Hex2 | Char | EscapedChar
Bound ::= Hex Hex Hex Hex
Repeat ::= '*' Bound D* Byte
FillUntil ::= '?' Bound D* Byte
Comment ::= '#' Any* NewLine
Delm ::= D+ | Comment
PseudoBin ::= (Delm | Byte | Repeat | FillUntil)*