File: parse.h

package info (click to toggle)
mixal 1.08-10
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k, lenny, squeeze
  • size: 208 kB
  • ctags: 286
  • sloc: ansic: 1,597; makefile: 89; awk: 10
file content (18 lines) | stat: -rw-r--r-- 307 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* MIX simulator, copyright 1994 by Darius Bacon */ 
#ifndef PARSE_H
#define PARSE_H

#include "mix.h"

/* --- The scanner --- */

void setup_scanner(const char *s);

/* --- The parser --- */

Cell parse_operand(Flag F_must_be_default, Byte default_F);
Cell parse_W(void);

void done_parsing(void);

#endif