summaryrefslogtreecommitdiffhomepage
path: root/asm/parse.cpp
blob: 350d86e674130383ca160a69d850c3da67daab83 (plain)
1
2
3
4
5
6
7
8
#include "parse.h"

#include "asm/assembler.h"

std::shared_ptr<Chunk> parseAsm(const std::string& line)
{
 return makeOp("lahf"); // TODO
}