├── README.md ├── calculator/ │ ├── calc.l # Lex file for calculator lexer │ └── calc.y # Yacc file for calculator parse ├── ConstantPropagation/ │ ├── const.c # Constant propagation implementation ...
There are few rites of programmer passage as iconic as writing your first parser. You might want to interpret or compile a scripting language, or you might want to accept natural-language-like ...
A small, dependency-free Python script to parse and display Intel HEX files with readable information. Useful when working with AVR toolchains or inspecting embedded firmware images. Files ...