|
dictionary | miasm.core.parse_asm.declarator |
|
dictionary | miasm.core.parse_asm.size2pck |
|
| miasm.core.parse_asm.EMPTY_RE = re.compile(r'\s*$') |
|
| miasm.core.parse_asm.COMMENT_RE = re.compile(r'\s*;\S*') |
|
| miasm.core.parse_asm.LOCAL_LABEL_RE = re.compile(r'\s*(\.L\S+)\s*:') |
|
| miasm.core.parse_asm.DIRECTIVE_START_RE = re.compile(r'\s*\.') |
|
| miasm.core.parse_asm.DIRECTIVE_RE = re.compile(r'\s*\.(\S+)') |
|
| miasm.core.parse_asm.LABEL_RE = re.compile(r'\s*(\S+)\s*:') |
|
| miasm.core.parse_asm.FORGET_LABEL_RE = re.compile(r'\s*\.LF[BE]\d\s*:') |
|
int | miasm.core.parse_asm.STATE_NO_BLOC = 0 |
|
int | miasm.core.parse_asm.STATE_IN_BLOC = 1 |
|