diff options
author | Pixel <> | 2001-04-13 12:03:09 +0000 |
---|---|---|
committer | Pixel <> | 2001-04-13 12:03:09 +0000 |
commit | a984cf3f28d3a5935c84f96f6da3bc7bd39a9ff1 (patch) | |
tree | cf0157e6e7f9df0f6025b1191d5f6be17b9b057d /include | |
parent | 905814760584d843409763d9f3c24b73b0780444 (diff) |
Assembleur.
Diffstat (limited to 'include')
-rw-r--r-- | include/Makefile.am | 2 | ||||
-rw-r--r-- | include/assembler.h | 3 | ||||
-rw-r--r-- | include/parser.h | 3 |
3 files changed, 5 insertions, 3 deletions
diff --git a/include/Makefile.am b/include/Makefile.am index 44298ee..1efe00a 100644 --- a/include/Makefile.am +++ b/include/Makefile.am @@ -1 +1 @@ -include_HEADERS = hash.h assembler.h meta.h parser.h numbers.h exceptions.h +include_HEADERS = hash.h assembler.h meta.h parser.h numbers.h exceptions.h types.h diff --git a/include/assembler.h b/include/assembler.h index c68f499..1092561 100644 --- a/include/assembler.h +++ b/include/assembler.h @@ -5,4 +5,7 @@ int assembler_init(void); void assembler_flush(void); void asm_eol(void); +void push_pile(char *); +void act_pile(int); + #endif diff --git a/include/parser.h b/include/parser.h index 30d626c..f045464 100644 --- a/include/parser.h +++ b/include/parser.h @@ -18,7 +18,6 @@ enum { OP_DIRECT }; -void push_pile(char *); -void act_pile(int); +void parse_line(char *); #endif
\ No newline at end of file |