15 lines
324 B
C
15 lines
324 B
C
|
/* Copyright (c) 2024 Freya Murphy */
|
||
|
|
||
|
#ifndef __PARSE_MIPS32_H__
|
||
|
#define __PARSE_MIPS32_H__
|
||
|
|
||
|
#include "parse.h"
|
||
|
|
||
|
/* initzlize a mips32 parser*/
|
||
|
int mips32_parser_init(struct lexer *lexer, struct parser *parser);
|
||
|
|
||
|
/* free the mips32 parser */
|
||
|
void mips32_parser_free(struct parser *parser);
|
||
|
|
||
|
#endif /* __PARSE_MIPS32_H__ */
|