Initial commit
This commit is contained in:
commit
ef40bd03c5
14 changed files with 276 additions and 0 deletions
11
include/Assembler.h
Executable file
11
include/Assembler.h
Executable file
|
|
@ -0,0 +1,11 @@
|
|||
#include <vector>
|
||||
|
||||
#include "Types.h"
|
||||
|
||||
struct Assembler {
|
||||
explicit Assembler(std::vector<u8>&);
|
||||
|
||||
std::vector<u8>& output;
|
||||
|
||||
void emit8(u8) const;
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue