17 lines
384 B
C++
17 lines
384 B
C++
#pragma once
|
|
/*
|
|
* Created by Brett on 17/11/23.
|
|
* Licensed under GNU General Public License V3.0
|
|
* See LICENSE file for license detail
|
|
*/
|
|
|
|
#ifndef BRAINFUCK_MISC_BF_MIPS_CODEGEN_H
|
|
#define BRAINFUCK_MISC_BF_MIPS_CODEGEN_H
|
|
|
|
#include <bf_tokenizer.h>
|
|
#include <fstream>
|
|
|
|
void codegen(const std::vector<token_t>& tokens, std::ostream& out);
|
|
|
|
#endif //BRAINFUCK_MISC_BF_MIPS_CODEGEN_H
|