summaryrefslogtreecommitdiff
path: root/include/assembler.h
blob: 2f3fc7a7d1510752661b0974aafb43d9a38cccda (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef __ASSEMBLER_H__
#define __ASSEMBLER_H__

int assembler_init(void);
void assembler_flush(void);
void asm_eol(void);
void asm_eof(void);
int process_file(char *);

void push_pile(char *);
void act_pile(int);

#endif