Mercurial > lcfOS
annotate doc/utils.rst @ 320:84d67cce67b7
Working burg
author | Windel Bouwman |
---|---|
date | Sun, 19 Jan 2014 16:09:44 +0100 |
parents | 8d07a4254f04 |
children | 6df89163e114 |
rev | line source |
---|---|
310 | 1 |
2 Utilities | |
3 ========= | |
4 | |
5 Hexfile manipulation | |
6 -------------------- | |
7 | |
8 | |
9 .. autoclass:: utils.HexFile | |
10 | |
11 | |
12 >>> from utils import HexFile | |
13 >>> h = HexFile() | |
14 >>> h.dump() | |
15 Hexfile containing 0 bytes | |
16 >>> h.addRegion(0, bytes([1,2,3])) | |
17 >>> h | |
18 Hexfile containing 3 bytes | |
19 | |
20 | |
319 | 21 Yacc |
22 ---- | |
23 | |
24 .. automodule:: yacc | |
25 | |
26 | |
27 Burg | |
28 ---- | |
29 | |
30 .. automodule:: pyburg | |
31 |