62c247f0a3c89b4912a2aabd6b482b75942cfee1
[ned1] / nedasm / nedasm_parser.h
/*
* © 2018 Aaron Taylor <ataylor at subgeniuskitty dot com>
* See LICENSE.txt file for copyright and license details.
*/
#ifndef NEDASM_PARSER_H
#define NEDASM_PARSER_H
#include "nedasm_structures.h"
// TODO: Note that this does not hand back an IR that would be executable. No word alignment or other functions have been performed. It's more like a literal translation of the assembly file with addresses in place of labels.
void parse_assembly(struct instruction ** instructions, FILE * input);
#endif