mirror of
https://github.com/lefticus/6502-cpp.git
synced 2025-05-17 06:38:19 +00:00
Apply some clang-format action
This commit is contained in:
parent
14b3f4192e
commit
1547abccab
98
.clang-format
Normal file
98
.clang-format
Normal file
@ -0,0 +1,98 @@
|
||||
AccessModifierOffset: -2
|
||||
AlignAfterOpenBracket: DontAlign
|
||||
AlignConsecutiveAssignments: false
|
||||
AlignConsecutiveDeclarations: false
|
||||
AlignEscapedNewlines: Left
|
||||
AlignOperands: true
|
||||
AlignTrailingComments: false
|
||||
AllowAllParametersOfDeclarationOnNextLine: false
|
||||
AllowShortBlocksOnASingleLine: true
|
||||
AllowShortCaseLabelsOnASingleLine: false
|
||||
AllowShortFunctionsOnASingleLine: All
|
||||
AllowShortIfStatementsOnASingleLine: true
|
||||
AllowShortLoopsOnASingleLine: true
|
||||
AlwaysBreakAfterDefinitionReturnType: None
|
||||
AlwaysBreakAfterReturnType: None
|
||||
AlwaysBreakBeforeMultilineStrings: true
|
||||
AlwaysBreakTemplateDeclarations: false
|
||||
BinPackArguments: false
|
||||
BinPackParameters: false
|
||||
BraceWrapping:
|
||||
AfterClass: true
|
||||
AfterControlStatement: false
|
||||
AfterEnum: false
|
||||
AfterFunction: true
|
||||
AfterNamespace: false
|
||||
AfterObjCDeclaration: false
|
||||
AfterStruct: true
|
||||
AfterUnion: false
|
||||
BeforeCatch: false
|
||||
BeforeElse: false
|
||||
IndentBraces: false
|
||||
SplitEmptyFunction: false
|
||||
SplitEmptyNamespace: true
|
||||
SplitEmptyRecord: true
|
||||
BreakAfterJavaFieldAnnotations: true
|
||||
BreakBeforeBinaryOperators: NonAssignment
|
||||
BreakBeforeBraces: Custom
|
||||
BreakBeforeInheritanceComma: true
|
||||
BreakBeforeTernaryOperators: true
|
||||
BreakConstructorInitializers: BeforeColon
|
||||
BreakConstructorInitializersBeforeComma: false
|
||||
BreakStringLiterals: true
|
||||
ColumnLimit: 0
|
||||
CommentPragmas: '^ IWYU pragma:'
|
||||
CompactNamespaces: false
|
||||
ConstructorInitializerAllOnOneLineOrOnePerLine: false
|
||||
ConstructorInitializerIndentWidth: 2
|
||||
ContinuationIndentWidth: 2
|
||||
Cpp11BracedListStyle: false
|
||||
DerivePointerAlignment: false
|
||||
DisableFormat: false
|
||||
ExperimentalAutoDetectBinPacking: true
|
||||
FixNamespaceComments: true
|
||||
ForEachMacros:
|
||||
- foreach
|
||||
- Q_FOREACH
|
||||
- BOOST_FOREACH
|
||||
IncludeCategories:
|
||||
- Priority: 2
|
||||
Regex: ^"(llvm|llvm-c|clang|clang-c)/
|
||||
- Priority: 3
|
||||
Regex: ^(<|"(gtest|gmock|isl|json)/)
|
||||
- Priority: 1
|
||||
Regex: .*
|
||||
IncludeIsMainRegex: (Test)?$
|
||||
IndentCaseLabels: false
|
||||
IndentWidth: 2
|
||||
IndentWrappedFunctionNames: true
|
||||
JavaScriptQuotes: Leave
|
||||
JavaScriptWrapImports: true
|
||||
KeepEmptyLinesAtTheStartOfBlocks: true
|
||||
Language: Cpp
|
||||
MacroBlockBegin: ''
|
||||
MacroBlockEnd: ''
|
||||
MaxEmptyLinesToKeep: 2
|
||||
NamespaceIndentation: Inner
|
||||
ObjCBlockIndentWidth: 7
|
||||
ObjCSpaceAfterProperty: true
|
||||
ObjCSpaceBeforeProtocolList: false
|
||||
PointerAlignment: Right
|
||||
ReflowComments: true
|
||||
SortIncludes: false
|
||||
SortUsingDeclarations: false
|
||||
SpaceAfterCStyleCast: false
|
||||
SpaceAfterTemplateKeyword: false
|
||||
SpaceBeforeAssignmentOperators: true
|
||||
SpaceBeforeParens: ControlStatements
|
||||
SpaceInEmptyParentheses: false
|
||||
SpacesBeforeTrailingComments: 0
|
||||
SpacesInAngles: false
|
||||
SpacesInCStyleCastParentheses: false
|
||||
SpacesInContainerLiterals: true
|
||||
SpacesInParentheses: false
|
||||
SpacesInSquareBrackets: false
|
||||
Standard: Cpp11
|
||||
TabWidth: 8
|
||||
UseTab: Never
|
||||
|
401
src/main.cpp
401
src/main.cpp
@ -10,8 +10,7 @@
|
||||
|
||||
struct ASMLine
|
||||
{
|
||||
enum class Type
|
||||
{
|
||||
enum class Type {
|
||||
Label,
|
||||
Instruction,
|
||||
Directive
|
||||
@ -41,8 +40,7 @@ std::string strip_lo_hi(const std::string &s)
|
||||
|
||||
std::string fixup_8bit_literal(const std::string &s)
|
||||
{
|
||||
if (s[0] == '$')
|
||||
{
|
||||
if (s[0] == '$') {
|
||||
return "#" + std::to_string(static_cast<uint8_t>(parse_8bit_literal(s)));
|
||||
}
|
||||
|
||||
@ -57,20 +55,18 @@ std::string fixup_8bit_literal(const std::string &s)
|
||||
return "#>" + strip_lo_hi(s);
|
||||
}
|
||||
|
||||
const auto is_num = std::all_of(begin(s), end(s), [](const auto c){ return (c >= '0' && c <= '9') || c == '-';});
|
||||
const auto is_num = std::all_of(begin(s), end(s), [](const auto c) { return (c >= '0' && c <= '9') || c == '-'; });
|
||||
|
||||
if (is_num) {
|
||||
return "#<" + s;
|
||||
}
|
||||
|
||||
return s;
|
||||
|
||||
}
|
||||
|
||||
struct Operand
|
||||
{
|
||||
enum class Type
|
||||
{
|
||||
enum class Type {
|
||||
empty,
|
||||
literal,
|
||||
reg /*ister*/
|
||||
@ -82,7 +78,8 @@ struct Operand
|
||||
|
||||
Operand() = default;
|
||||
|
||||
bool operator==(const Operand &other) const {
|
||||
bool operator==(const Operand &other) const
|
||||
{
|
||||
return type == other.type && reg_num == other.reg_num && value == other.value;
|
||||
}
|
||||
|
||||
@ -102,8 +99,7 @@ struct Operand
|
||||
|
||||
struct mos6502 : ASMLine
|
||||
{
|
||||
enum class OpCode
|
||||
{
|
||||
enum class OpCode {
|
||||
unknown,
|
||||
lda,
|
||||
asl,
|
||||
@ -142,7 +138,8 @@ struct mos6502 : ASMLine
|
||||
bcs
|
||||
};
|
||||
|
||||
static bool get_is_branch(const OpCode o) {
|
||||
static bool get_is_branch(const OpCode o)
|
||||
{
|
||||
switch (o) {
|
||||
case OpCode::beq:
|
||||
case OpCode::bne:
|
||||
@ -186,7 +183,8 @@ struct mos6502 : ASMLine
|
||||
return false;
|
||||
}
|
||||
|
||||
static bool get_is_comparison(const OpCode o) {
|
||||
static bool get_is_comparison(const OpCode o)
|
||||
{
|
||||
switch (o) {
|
||||
case OpCode::cmp:
|
||||
case OpCode::cpy:
|
||||
@ -327,10 +325,9 @@ struct mos6502 : ASMLine
|
||||
{
|
||||
switch (type) {
|
||||
case ASMLine::Type::Label:
|
||||
return text; // + ':';
|
||||
return text;// + ':';
|
||||
case ASMLine::Type::Directive:
|
||||
case ASMLine::Type::Instruction:
|
||||
{
|
||||
case ASMLine::Type::Instruction: {
|
||||
const std::string line = '\t' + text + ' ' + op.value;
|
||||
return line + std::string(static_cast<size_t>(std::max(15 - static_cast<int>(line.size()), 1)), ' ') + "; " + comment;
|
||||
}
|
||||
@ -348,8 +345,7 @@ struct mos6502 : ASMLine
|
||||
|
||||
struct i386 : ASMLine
|
||||
{
|
||||
enum class OpCode
|
||||
{
|
||||
enum class OpCode {
|
||||
unknown,
|
||||
movzbl,
|
||||
movzwl,
|
||||
@ -388,42 +384,59 @@ struct i386 : ASMLine
|
||||
call
|
||||
};
|
||||
|
||||
static Operand get_register(const int reg_num, const int offset = 0) {
|
||||
static Operand get_register(const int reg_num, const int offset = 0)
|
||||
{
|
||||
switch (reg_num) {
|
||||
// http://sta.c64.org/cbm64mem.html
|
||||
case 0x00: return Operand(Operand::Type::literal, "$03"); // unused, fp->int routine pointer
|
||||
case 0x01: return Operand(Operand::Type::literal, "$04");
|
||||
case 0x02: return Operand(Operand::Type::literal, "$05"); // unused, int->fp routine pointer
|
||||
case 0x03: return Operand(Operand::Type::literal, "$06");
|
||||
case 0x04: return Operand(Operand::Type::literal, "$fb"); // unused
|
||||
case 0x05: return Operand(Operand::Type::literal, "$fc"); // unused
|
||||
case 0x06: return Operand(Operand::Type::literal, "$fd"); // unused
|
||||
case 0x07: return Operand(Operand::Type::literal, "$fe"); // unused
|
||||
case 0x08: return Operand(Operand::Type::literal, "$22"); // unused
|
||||
case 0x09: return Operand(Operand::Type::literal, "$23"); // unused
|
||||
case 0x0A: return Operand(Operand::Type::literal, "$39"); // Current BASIC line number
|
||||
case 0x0B: return Operand(Operand::Type::literal, "$3a"); // Current BASIC line number
|
||||
case 0x10: return get_register(0x00 + offset);
|
||||
case 0x11: return get_register(0x02 + offset);
|
||||
case 0x12: return get_register(0x04 + offset);
|
||||
case 0x13: return get_register(0x06 + offset);
|
||||
case 0x14: return get_register(0x08 + offset);
|
||||
case 0x15: return get_register(0x0A + offset);
|
||||
case 0x00:
|
||||
return Operand(Operand::Type::literal, "$03");// unused, fp->int routine pointer
|
||||
case 0x01:
|
||||
return Operand(Operand::Type::literal, "$04");
|
||||
case 0x02:
|
||||
return Operand(Operand::Type::literal, "$05");// unused, int->fp routine pointer
|
||||
case 0x03:
|
||||
return Operand(Operand::Type::literal, "$06");
|
||||
case 0x04:
|
||||
return Operand(Operand::Type::literal, "$fb");// unused
|
||||
case 0x05:
|
||||
return Operand(Operand::Type::literal, "$fc");// unused
|
||||
case 0x06:
|
||||
return Operand(Operand::Type::literal, "$fd");// unused
|
||||
case 0x07:
|
||||
return Operand(Operand::Type::literal, "$fe");// unused
|
||||
case 0x08:
|
||||
return Operand(Operand::Type::literal, "$22");// unused
|
||||
case 0x09:
|
||||
return Operand(Operand::Type::literal, "$23");// unused
|
||||
case 0x0A:
|
||||
return Operand(Operand::Type::literal, "$39");// Current BASIC line number
|
||||
case 0x0B:
|
||||
return Operand(Operand::Type::literal, "$3a");// Current BASIC line number
|
||||
case 0x10:
|
||||
return get_register(0x00 + offset);
|
||||
case 0x11:
|
||||
return get_register(0x02 + offset);
|
||||
case 0x12:
|
||||
return get_register(0x04 + offset);
|
||||
case 0x13:
|
||||
return get_register(0x06 + offset);
|
||||
case 0x14:
|
||||
return get_register(0x08 + offset);
|
||||
case 0x15:
|
||||
return get_register(0x0A + offset);
|
||||
};
|
||||
throw std::runtime_error("Unhandled register number: " + std::to_string(reg_num));
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
static OpCode parse_opcode(Type t, const std::string &o)
|
||||
{
|
||||
switch(t)
|
||||
{
|
||||
switch (t) {
|
||||
case Type::Label:
|
||||
return OpCode::unknown;
|
||||
case Type::Directive:
|
||||
return OpCode::unknown;
|
||||
case Type::Instruction:
|
||||
{
|
||||
case Type::Instruction: {
|
||||
if (o == "movzwl") return OpCode::movzwl;
|
||||
if (o == "movzbl") return OpCode::movzbl;
|
||||
if (o == "shrb") return OpCode::shrb;
|
||||
@ -512,7 +525,7 @@ static Operand get_register(const int reg_num, const int offset = 0) {
|
||||
}
|
||||
}
|
||||
|
||||
i386(const int t_line_num, std::string t_line_text, Type t, std::string t_opcode, std::string o1="", std::string o2="")
|
||||
i386(const int t_line_num, std::string t_line_text, Type t, std::string t_opcode, std::string o1 = "", std::string o2 = "")
|
||||
: ASMLine(t, t_opcode), line_num(t_line_num), line_text(std::move(t_line_text)),
|
||||
opcode(parse_opcode(t, t_opcode)), operand1(parse_operand(o1)), operand2(parse_operand(o2))
|
||||
{
|
||||
@ -526,11 +539,9 @@ static Operand get_register(const int reg_num, const int offset = 0) {
|
||||
};
|
||||
|
||||
|
||||
|
||||
struct AVR : ASMLine
|
||||
{
|
||||
enum class OpCode
|
||||
{
|
||||
enum class OpCode {
|
||||
unknown,
|
||||
ldi,
|
||||
sts,
|
||||
@ -566,14 +577,12 @@ struct AVR : ASMLine
|
||||
|
||||
static OpCode parse_opcode(Type t, const std::string &o)
|
||||
{
|
||||
switch(t)
|
||||
{
|
||||
switch (t) {
|
||||
case Type::Label:
|
||||
return OpCode::unknown;
|
||||
case Type::Directive:
|
||||
return OpCode::unknown;
|
||||
case Type::Instruction:
|
||||
{
|
||||
case Type::Instruction: {
|
||||
if (o == "ldi") return OpCode::ldi;
|
||||
if (o == "sts") return OpCode::sts;
|
||||
if (o == "ret") return OpCode::ret;
|
||||
@ -603,7 +612,6 @@ struct AVR : ASMLine
|
||||
if (o == "cpse") return OpCode::cpse;
|
||||
if (o == "cpi") return OpCode::cpi;
|
||||
if (o == "brlo") return OpCode::brlo;
|
||||
|
||||
}
|
||||
}
|
||||
throw std::runtime_error("Unknown opcode: " + o);
|
||||
@ -622,51 +630,84 @@ struct AVR : ASMLine
|
||||
if (reg_name == 'Z') {
|
||||
return 30;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
static Operand get_register(const char reg_name, const int byte = 0) {
|
||||
static Operand get_register(const char reg_name, const int byte = 0)
|
||||
{
|
||||
return get_register(get_register_number(reg_name), byte);
|
||||
}
|
||||
|
||||
static Operand get_register(const int reg_num, [[maybe_unused]] const int offset = 0) {
|
||||
static Operand get_register(const int reg_num, [[maybe_unused]] const int offset = 0)
|
||||
{
|
||||
switch (reg_num) {
|
||||
// http://sta.c64.org/cbm64mem.html
|
||||
case 0: return Operand(Operand::Type::literal, "$a7"); // bit buffer for rs232
|
||||
case 1: return Operand(Operand::Type::literal, "$a8"); // counter for rs232
|
||||
case 2: return Operand(Operand::Type::literal, "$05"); // unused, int->fp routine pointer
|
||||
case 3: return Operand(Operand::Type::literal, "$06");
|
||||
case 4: return Operand(Operand::Type::literal, "$fb"); // unused
|
||||
case 5: return Operand(Operand::Type::literal, "$fc"); // unused
|
||||
case 6: return Operand(Operand::Type::literal, "$fd"); // unused
|
||||
case 7: return Operand(Operand::Type::literal, "$fe"); // unused
|
||||
case 8: return Operand(Operand::Type::literal, "$22"); // unused
|
||||
case 9: return Operand(Operand::Type::literal, "$23"); // unused
|
||||
case 10: return Operand(Operand::Type::literal, "$39"); // Current BASIC line number
|
||||
case 11: return Operand(Operand::Type::literal, "$3a"); // Current BASIC line number
|
||||
case 12: return Operand(Operand::Type::literal, "$61"); // arithmetic register #1
|
||||
case 13: return Operand(Operand::Type::literal, "$62");
|
||||
case 14: return Operand(Operand::Type::literal, "$63");
|
||||
case 15: return Operand(Operand::Type::literal, "$64");
|
||||
case 16: return Operand(Operand::Type::literal, "$65");
|
||||
case 17: return Operand(Operand::Type::literal, "$69"); // arithmetic register #2
|
||||
case 18: return Operand(Operand::Type::literal, "$6a");
|
||||
case 19: return Operand(Operand::Type::literal, "$6b");
|
||||
case 20: return Operand(Operand::Type::literal, "$6c");
|
||||
case 21: return Operand(Operand::Type::literal, "$6d");
|
||||
case 22: return Operand(Operand::Type::literal, "$57"); // arithmetic register #3
|
||||
case 23: return Operand(Operand::Type::literal, "$58");
|
||||
case 24: return Operand(Operand::Type::literal, "$59");
|
||||
case 25: return Operand(Operand::Type::literal, "$5a");
|
||||
case 26: return Operand(Operand::Type::literal, "$5b");
|
||||
case 27: return Operand(Operand::Type::literal, "$5c"); // arithmetic register #4
|
||||
case 28: return Operand(Operand::Type::literal, "$5d");
|
||||
case 29: return Operand(Operand::Type::literal, "$5e");
|
||||
case 30: return Operand(Operand::Type::literal, "$5f");
|
||||
case 31: return Operand(Operand::Type::literal, "$60");
|
||||
case 0:
|
||||
return Operand(Operand::Type::literal, "$a7");// bit buffer for rs232
|
||||
case 1:
|
||||
return Operand(Operand::Type::literal, "$a8");// counter for rs232
|
||||
case 2:
|
||||
return Operand(Operand::Type::literal, "$05");// unused, int->fp routine pointer
|
||||
case 3:
|
||||
return Operand(Operand::Type::literal, "$06");
|
||||
case 4:
|
||||
return Operand(Operand::Type::literal, "$fb");// unused
|
||||
case 5:
|
||||
return Operand(Operand::Type::literal, "$fc");// unused
|
||||
case 6:
|
||||
return Operand(Operand::Type::literal, "$fd");// unused
|
||||
case 7:
|
||||
return Operand(Operand::Type::literal, "$fe");// unused
|
||||
case 8:
|
||||
return Operand(Operand::Type::literal, "$22");// unused
|
||||
case 9:
|
||||
return Operand(Operand::Type::literal, "$23");// unused
|
||||
case 10:
|
||||
return Operand(Operand::Type::literal, "$39");// Current BASIC line number
|
||||
case 11:
|
||||
return Operand(Operand::Type::literal, "$3a");// Current BASIC line number
|
||||
case 12:
|
||||
return Operand(Operand::Type::literal, "$61");// arithmetic register #1
|
||||
case 13:
|
||||
return Operand(Operand::Type::literal, "$62");
|
||||
case 14:
|
||||
return Operand(Operand::Type::literal, "$63");
|
||||
case 15:
|
||||
return Operand(Operand::Type::literal, "$64");
|
||||
case 16:
|
||||
return Operand(Operand::Type::literal, "$65");
|
||||
case 17:
|
||||
return Operand(Operand::Type::literal, "$69");// arithmetic register #2
|
||||
case 18:
|
||||
return Operand(Operand::Type::literal, "$6a");
|
||||
case 19:
|
||||
return Operand(Operand::Type::literal, "$6b");
|
||||
case 20:
|
||||
return Operand(Operand::Type::literal, "$6c");
|
||||
case 21:
|
||||
return Operand(Operand::Type::literal, "$6d");
|
||||
case 22:
|
||||
return Operand(Operand::Type::literal, "$57");// arithmetic register #3
|
||||
case 23:
|
||||
return Operand(Operand::Type::literal, "$58");
|
||||
case 24:
|
||||
return Operand(Operand::Type::literal, "$59");
|
||||
case 25:
|
||||
return Operand(Operand::Type::literal, "$5a");
|
||||
case 26:
|
||||
return Operand(Operand::Type::literal, "$5b");
|
||||
case 27:
|
||||
return Operand(Operand::Type::literal, "$5c");// arithmetic register #4
|
||||
case 28:
|
||||
return Operand(Operand::Type::literal, "$5d");
|
||||
case 29:
|
||||
return Operand(Operand::Type::literal, "$5e");
|
||||
case 30:
|
||||
return Operand(Operand::Type::literal, "$5f");
|
||||
case 31:
|
||||
return Operand(Operand::Type::literal, "$60");
|
||||
}
|
||||
throw std::runtime_error("Unhandled register number: " + std::to_string(reg_num));
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
static Operand parse_operand(std::string o)
|
||||
@ -682,7 +723,7 @@ static Operand get_register(const int reg_num, [[maybe_unused]] const int offset
|
||||
}
|
||||
}
|
||||
|
||||
AVR(const int t_line_num, std::string t_line_text, Type t, std::string t_opcode, std::string o1="", std::string o2="")
|
||||
AVR(const int t_line_num, std::string t_line_text, Type t, std::string t_opcode, std::string o1 = "", std::string o2 = "")
|
||||
: ASMLine(t, t_opcode), line_num(t_line_num), line_text(std::move(t_line_text)),
|
||||
opcode(parse_opcode(t, t_opcode)), operand1(parse_operand(o1)), operand2(parse_operand(o2))
|
||||
{
|
||||
@ -698,8 +739,7 @@ static Operand get_register(const int reg_num, [[maybe_unused]] const int offset
|
||||
void indirect_load(std::vector<mos6502> &instructions, const std::string &from_address_low_byte, const std::string &to_address)
|
||||
{
|
||||
instructions.emplace_back(mos6502::OpCode::ldy, Operand(Operand::Type::literal, "#0"));
|
||||
instructions.emplace_back(mos6502::OpCode::lda, Operand(Operand::Type::literal,
|
||||
"(" + from_address_low_byte + "), Y"));
|
||||
instructions.emplace_back(mos6502::OpCode::lda, Operand(Operand::Type::literal, "(" + from_address_low_byte + "), Y"));
|
||||
instructions.emplace_back(mos6502::OpCode::sta, Operand(Operand::Type::literal, to_address));
|
||||
}
|
||||
|
||||
@ -707,8 +747,7 @@ void indirect_store(std::vector<mos6502> &instructions, const std::string &from_
|
||||
{
|
||||
instructions.emplace_back(mos6502::OpCode::lda, Operand(Operand::Type::literal, from_address));
|
||||
instructions.emplace_back(mos6502::OpCode::ldy, Operand(Operand::Type::literal, "#0"));
|
||||
instructions.emplace_back(mos6502::OpCode::sta, Operand(Operand::Type::literal,
|
||||
"(" + to_address_low_byte + "), Y") );
|
||||
instructions.emplace_back(mos6502::OpCode::sta, Operand(Operand::Type::literal, "(" + to_address_low_byte + "), Y"));
|
||||
}
|
||||
|
||||
void fixup_16_bit_N_Z_flags(std::vector<mos6502> &instructions)
|
||||
@ -733,7 +772,8 @@ void fixup_16_bit_N_Z_flags(std::vector<mos6502> &instructions)
|
||||
}
|
||||
|
||||
|
||||
void subtract_16_bit(std::vector<mos6502> &instructions, int reg, const std::uint16_t value) {
|
||||
void subtract_16_bit(std::vector<mos6502> &instructions, int reg, const std::uint16_t value)
|
||||
{
|
||||
//instructions.emplace_back(mos6502::OpCode::sta, Operand(Operand::Type::literal, address_low_byte));
|
||||
instructions.emplace_back(mos6502::OpCode::sec);
|
||||
instructions.emplace_back(mos6502::OpCode::lda, AVR::get_register(reg));
|
||||
@ -746,15 +786,16 @@ void subtract_16_bit(std::vector<mos6502> &instructions, int reg, const std::ui
|
||||
fixup_16_bit_N_Z_flags(instructions);
|
||||
}
|
||||
|
||||
void increment_16_bit(std::vector<mos6502> & instructions, int reg) {
|
||||
void increment_16_bit(std::vector<mos6502> &instructions, int reg)
|
||||
{
|
||||
//instructions.emplace_back(mos6502::OpCode::sta, Operand(Operand::Type::literal, address_low_byte));
|
||||
instructions.emplace_back(mos6502::OpCode::lda, AVR::get_register(reg));
|
||||
instructions.emplace_back(mos6502::OpCode::clc);
|
||||
instructions.emplace_back(mos6502::OpCode::adc, Operand(Operand::Type::literal, "#1"));
|
||||
instructions.emplace_back(mos6502::OpCode::sta, AVR::get_register(reg));
|
||||
instructions.emplace_back(mos6502::OpCode::lda, AVR::get_register(reg+1));
|
||||
instructions.emplace_back(mos6502::OpCode::lda, AVR::get_register(reg + 1));
|
||||
instructions.emplace_back(mos6502::OpCode::adc, Operand(Operand::Type::literal, "#0"));
|
||||
instructions.emplace_back(mos6502::OpCode::sta, AVR::get_register(reg+1));
|
||||
instructions.emplace_back(mos6502::OpCode::sta, AVR::get_register(reg + 1));
|
||||
}
|
||||
|
||||
void translate_instruction(std::vector<mos6502> &instructions, const AVR::OpCode op, const Operand &o1, const Operand &o2)
|
||||
@ -772,8 +813,7 @@ void translate_instruction(std::vector<mos6502> &instructions, const AVR::OpCode
|
||||
const auto o1_reg_num = translate_register_number(o1);
|
||||
const auto o2_reg_num = translate_register_number(o2);
|
||||
|
||||
switch(op)
|
||||
{
|
||||
switch (op) {
|
||||
case AVR::OpCode::dec:
|
||||
instructions.emplace_back(mos6502::OpCode::dec, AVR::get_register(o1_reg_num));
|
||||
return;
|
||||
@ -801,8 +841,7 @@ void translate_instruction(std::vector<mos6502> &instructions, const AVR::OpCode
|
||||
case AVR::OpCode::rcall:
|
||||
instructions.emplace_back(mos6502::OpCode::jsr, o1);
|
||||
return;
|
||||
case AVR::OpCode::ld:
|
||||
{
|
||||
case AVR::OpCode::ld: {
|
||||
if (o2.value == "Z" || o2.value == "X" || o2.value == "Y") {
|
||||
indirect_load(instructions, AVR::get_register(o2.value[0]).value, AVR::get_register(o1_reg_num).value);
|
||||
return;
|
||||
@ -814,8 +853,7 @@ void translate_instruction(std::vector<mos6502> &instructions, const AVR::OpCode
|
||||
}
|
||||
throw std::runtime_error("Unhandled ld to non-Z");
|
||||
}
|
||||
case AVR::OpCode::sbci:
|
||||
{
|
||||
case AVR::OpCode::sbci: {
|
||||
// we want to utilize the carry flag, however it was set previously
|
||||
// (it's really a borrow flag on the 6502)
|
||||
instructions.emplace_back(mos6502::OpCode::lda, AVR::get_register(o1_reg_num));
|
||||
@ -824,8 +862,7 @@ void translate_instruction(std::vector<mos6502> &instructions, const AVR::OpCode
|
||||
fixup_16_bit_N_Z_flags(instructions);
|
||||
return;
|
||||
}
|
||||
case AVR::OpCode::subi:
|
||||
{
|
||||
case AVR::OpCode::subi: {
|
||||
// to do: deal with Carry bit (and other flags) nonsense from AVR
|
||||
// if |x| < |y| -> x-y +carry
|
||||
// for these special cases with -(1) and -(-(1))
|
||||
@ -849,7 +886,7 @@ void translate_instruction(std::vector<mos6502> &instructions, const AVR::OpCode
|
||||
return;
|
||||
}
|
||||
case AVR::OpCode::st: {
|
||||
if (o1.value == "Z" || o1.value == "Y"||o1.value == "X") {
|
||||
if (o1.value == "Z" || o1.value == "Y" || o1.value == "X") {
|
||||
indirect_store(instructions, AVR::get_register(o2_reg_num).value, AVR::get_register(o1.value[0]).value);
|
||||
return;
|
||||
}
|
||||
@ -984,8 +1021,7 @@ void translate_instruction(std::vector<mos6502> &instructions, const AVR::OpCode
|
||||
|
||||
void translate_instruction(std::vector<mos6502> &instructions, const i386::OpCode op, const Operand &o1, const Operand &o2)
|
||||
{
|
||||
switch(op)
|
||||
{
|
||||
switch (op) {
|
||||
case i386::OpCode::ret:
|
||||
instructions.emplace_back(mos6502::OpCode::rts);
|
||||
break;
|
||||
@ -1102,7 +1138,7 @@ void translate_instruction(std::vector<mos6502> &instructions, const i386::OpCod
|
||||
if (o1.type == Operand::Type::reg && o2.type == Operand::Type::reg && o1.reg_num == o2.reg_num) {
|
||||
// this just tests the register for 0
|
||||
instructions.emplace_back(mos6502::OpCode::lda, i386::get_register(o1.reg_num));
|
||||
// instructions.emplace_back(mos6502::OpCode::bit, Operand(Operand::Type::literal, "#$00"));
|
||||
// instructions.emplace_back(mos6502::OpCode::bit, Operand(Operand::Type::literal, "#$00"));
|
||||
} else if (o1.type == Operand::Type::reg && o2.type == Operand::Type::reg) {
|
||||
// ands the values
|
||||
instructions.emplace_back(mos6502::OpCode::lda, i386::get_register(o1.reg_num));
|
||||
@ -1244,10 +1280,10 @@ void translate_instruction(std::vector<mos6502> &instructions, const i386::OpCod
|
||||
// o2 <- -cf
|
||||
if (o1.type == Operand::Type::reg && o2.type == Operand::Type::reg
|
||||
&& o1.reg_num == o2.reg_num) {
|
||||
instructions.emplace_back(mos6502::OpCode::lda, Operand(Operand::Type::literal, "#$00")); // reset a
|
||||
instructions.emplace_back(mos6502::OpCode::sbc, Operand(Operand::Type::literal, "#$00")); // subtract out the carry flag
|
||||
instructions.emplace_back(mos6502::OpCode::eor, Operand(Operand::Type::literal, "#$ff")); // invert the bits
|
||||
instructions.emplace_back(mos6502::OpCode::sta, i386::get_register(o2.reg_num)); // place the value
|
||||
instructions.emplace_back(mos6502::OpCode::lda, Operand(Operand::Type::literal, "#$00"));// reset a
|
||||
instructions.emplace_back(mos6502::OpCode::sbc, Operand(Operand::Type::literal, "#$00"));// subtract out the carry flag
|
||||
instructions.emplace_back(mos6502::OpCode::eor, Operand(Operand::Type::literal, "#$ff"));// invert the bits
|
||||
instructions.emplace_back(mos6502::OpCode::sta, i386::get_register(o2.reg_num));// place the value
|
||||
} else {
|
||||
throw std::runtime_error("Cannot translate sbbb instruction");
|
||||
}
|
||||
@ -1259,21 +1295,17 @@ void translate_instruction(std::vector<mos6502> &instructions, const i386::OpCod
|
||||
|
||||
default:
|
||||
throw std::runtime_error("Cannot translate unhandled instruction");
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
enum class LogLevel
|
||||
{
|
||||
enum class LogLevel {
|
||||
Warning,
|
||||
Error
|
||||
};
|
||||
|
||||
std::string to_string(const LogLevel ll)
|
||||
{
|
||||
switch (ll)
|
||||
{
|
||||
switch (ll) {
|
||||
case LogLevel::Warning:
|
||||
return "warning";
|
||||
case LogLevel::Error:
|
||||
@ -1298,8 +1330,7 @@ template<typename FromArch>
|
||||
void to_mos6502(const FromArch &i, std::vector<mos6502> &instructions)
|
||||
{
|
||||
try {
|
||||
switch(i.type)
|
||||
{
|
||||
switch (i.type) {
|
||||
case ASMLine::Type::Label:
|
||||
if (i.text == "0") {
|
||||
instructions.emplace_back(i.type, "-memcpy_0");
|
||||
@ -1314,8 +1345,7 @@ void to_mos6502(const FromArch &i, std::vector<mos6502> &instructions)
|
||||
const auto count = atoi(i.text.data() + 6);
|
||||
|
||||
std::string zeros;
|
||||
for (int i = 0; i < count; ++i)
|
||||
{
|
||||
for (int i = 0; i < count; ++i) {
|
||||
if ((i % 20) == 0) {
|
||||
if (!zeros.empty()) {
|
||||
instructions.emplace_back(ASMLine::Type::Directive, zeros);
|
||||
@ -1349,11 +1379,9 @@ void to_mos6502(const FromArch &i, std::vector<mos6502> &instructions)
|
||||
if (text[0] == '\t') {
|
||||
text.erase(0, 1);
|
||||
}
|
||||
for_each(std::next(instructions.begin(), head), instructions.end(),
|
||||
[ text ](auto &ins){
|
||||
for_each(std::next(instructions.begin(), head), instructions.end(), [text](auto &ins) {
|
||||
ins.comment = text;
|
||||
}
|
||||
);
|
||||
});
|
||||
return;
|
||||
}
|
||||
} catch (const std::exception &e) {
|
||||
@ -1374,11 +1402,9 @@ bool optimize(std::vector<mos6502> &instructions)
|
||||
return i;
|
||||
};
|
||||
|
||||
for (size_t op = 0; op < instructions.size() - 1; ++op)
|
||||
{
|
||||
for (size_t op = 0; op < instructions.size() - 1; ++op) {
|
||||
// look for a transfer of Y -> A immediately followed by A -> Y
|
||||
if (instructions[op].opcode == mos6502::OpCode::tya)
|
||||
{
|
||||
if (instructions[op].opcode == mos6502::OpCode::tya) {
|
||||
next_instruction(op);
|
||||
if (instructions[op].opcode == mos6502::OpCode::tay) {
|
||||
instructions[op] = mos6502(ASMLine::Type::Directive,
|
||||
@ -1388,15 +1414,12 @@ bool optimize(std::vector<mos6502> &instructions)
|
||||
}
|
||||
}
|
||||
|
||||
for (size_t op = 0; op < instructions.size() - 1; ++op)
|
||||
{
|
||||
for (size_t op = 0; op < instructions.size() - 1; ++op) {
|
||||
// look for a store A -> loc immediately followed by loc -> A
|
||||
if (instructions[op].opcode == mos6502::OpCode::sta)
|
||||
{
|
||||
if (instructions[op].opcode == mos6502::OpCode::sta) {
|
||||
const auto next = next_instruction(op);
|
||||
if (instructions[next].opcode == mos6502::OpCode::lda
|
||||
&& instructions[next].op == instructions[op].op)
|
||||
{
|
||||
&& instructions[next].op == instructions[op].op) {
|
||||
instructions[next] = mos6502(ASMLine::Type::Directive,
|
||||
"; removed redundant lda: " + instructions[next].to_string());
|
||||
return true;
|
||||
@ -1406,12 +1429,11 @@ bool optimize(std::vector<mos6502> &instructions)
|
||||
|
||||
for (size_t op = 0; op < instructions.size() - 1; ++op) {
|
||||
if (instructions[op].opcode == mos6502::OpCode::ldy && instructions[op].op.type == Operand::Type::literal) {
|
||||
auto op2 = op+1;
|
||||
auto op2 = op + 1;
|
||||
|
||||
while (op2 < instructions.size() && (instructions[op2].type != ASMLine::Type::Label)) {
|
||||
// while inside this label
|
||||
if (instructions[op2].opcode == mos6502::OpCode::ldy && instructions[op2].op.value ==
|
||||
instructions[op].op.value) {
|
||||
if (instructions[op2].opcode == mos6502::OpCode::ldy && instructions[op2].op.value == instructions[op].op.value) {
|
||||
instructions[op2] = mos6502(ASMLine::Type::Directive, "; removed redundant ldy: " + instructions[op2].to_string());
|
||||
return true;
|
||||
}
|
||||
@ -1420,26 +1442,21 @@ bool optimize(std::vector<mos6502> &instructions)
|
||||
}
|
||||
}
|
||||
|
||||
for (size_t op = 0; op < instructions.size() - 1; ++op)
|
||||
{
|
||||
for (size_t op = 0; op < instructions.size() - 1; ++op) {
|
||||
if (instructions[op].opcode == mos6502::OpCode::lda
|
||||
&& instructions[op].op.type == Operand::Type::literal)
|
||||
{
|
||||
&& instructions[op].op.type == Operand::Type::literal) {
|
||||
const auto operand = instructions[op].op;
|
||||
auto op2 = op+1;
|
||||
auto op2 = op + 1;
|
||||
// look for multiple stores of the same value
|
||||
while (op2 < instructions.size() && (instructions[op2].opcode == mos6502::OpCode::sta
|
||||
|| instructions[op2].type == ASMLine::Type::Directive)) {
|
||||
while (op2 < instructions.size() && (instructions[op2].opcode == mos6502::OpCode::sta || instructions[op2].type == ASMLine::Type::Directive)) {
|
||||
++op2;
|
||||
}
|
||||
if (instructions[op2].opcode == mos6502::OpCode::lda
|
||||
&& operand == instructions[op2].op)
|
||||
{
|
||||
&& operand == instructions[op2].op) {
|
||||
instructions[op2] = mos6502(ASMLine::Type::Directive,
|
||||
"; removed redundant lda: " + instructions[op2].to_string());
|
||||
return true;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@ -1449,17 +1466,14 @@ bool optimize(std::vector<mos6502> &instructions)
|
||||
bool fix_long_branches(std::vector<mos6502> &instructions, int &branch_patch_count)
|
||||
{
|
||||
std::map<std::string, size_t> labels;
|
||||
for (size_t op = 0; op < instructions.size(); ++op)
|
||||
{
|
||||
for (size_t op = 0; op < instructions.size(); ++op) {
|
||||
if (instructions[op].type == ASMLine::Type::Label) {
|
||||
labels[instructions[op].text] = op;
|
||||
}
|
||||
}
|
||||
|
||||
for (size_t op = 0; op < instructions.size(); ++op)
|
||||
{
|
||||
if (instructions[op].is_branch && std::abs(static_cast<int>(labels[instructions[op].op.value]) - static_cast<int>(op)) * 3 > 255)
|
||||
{
|
||||
for (size_t op = 0; op < instructions.size(); ++op) {
|
||||
if (instructions[op].is_branch && std::abs(static_cast<int>(labels[instructions[op].op.value]) - static_cast<int>(op)) * 3 > 255) {
|
||||
++branch_patch_count;
|
||||
const auto going_to = instructions[op].op.value;
|
||||
const auto new_pos = "patch_" + std::to_string(branch_patch_count);
|
||||
@ -1469,7 +1483,7 @@ bool fix_long_branches(std::vector<mos6502> &instructions, int &branch_patch_cou
|
||||
instructions[op] = mos6502(mos6502::OpCode::beq, Operand(Operand::Type::literal, new_pos));
|
||||
instructions.insert(std::next(std::begin(instructions), op + 1), mos6502(mos6502::OpCode::jmp, Operand(Operand::Type::literal, going_to)));
|
||||
instructions.insert(std::next(std::begin(instructions), op + 2), mos6502(ASMLine::Type::Label, new_pos));
|
||||
instructions[op].comment = instructions[op+1].comment = instructions[op+2].comment = comment;
|
||||
instructions[op].comment = instructions[op + 1].comment = instructions[op + 2].comment = comment;
|
||||
return true;
|
||||
} else if (instructions[op].opcode == mos6502::OpCode::bcc) {
|
||||
const auto comment = instructions[op].comment;
|
||||
@ -1494,20 +1508,18 @@ bool fix_overwritten_flags(std::vector<mos6502> &instructions)
|
||||
return false;
|
||||
}
|
||||
|
||||
for (size_t op = 0; op < instructions.size(); ++op)
|
||||
{
|
||||
for (size_t op = 0; op < instructions.size(); ++op) {
|
||||
if (instructions[op].is_comparison) {
|
||||
auto op2 = op + 1;
|
||||
while (op2 < instructions.size()
|
||||
&& !instructions[op2].is_comparison
|
||||
&& !instructions[op2].is_branch)
|
||||
{
|
||||
&& !instructions[op2].is_branch) {
|
||||
++op2;
|
||||
}
|
||||
|
||||
if (op2 < instructions.size()
|
||||
&& (op2 - op) > 1
|
||||
&& instructions[op2-1].opcode != mos6502::OpCode::plp) {
|
||||
&& instructions[op2 - 1].opcode != mos6502::OpCode::plp) {
|
||||
if (instructions[op2].is_comparison) {
|
||||
continue;
|
||||
}
|
||||
@ -1516,11 +1528,10 @@ bool fix_overwritten_flags(std::vector<mos6502> &instructions)
|
||||
// insert a pull of processor status before the branch
|
||||
instructions.insert(std::next(std::begin(instructions), op2), mos6502(mos6502::OpCode::plp));
|
||||
// insert a push of processor status after the comparison
|
||||
instructions.insert(std::next(std::begin(instructions), op+1), mos6502(mos6502::OpCode::php));
|
||||
instructions.insert(std::next(std::begin(instructions), op + 1), mos6502(mos6502::OpCode::php));
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -1528,19 +1539,21 @@ bool fix_overwritten_flags(std::vector<mos6502> &instructions)
|
||||
return false;
|
||||
}
|
||||
|
||||
void setup_target_cpu_state([[maybe_unused]] const std::vector<AVR> &instructions, std::vector<mos6502> &new_instructions) {
|
||||
void setup_target_cpu_state([[maybe_unused]] const std::vector<AVR> &instructions, std::vector<mos6502> &new_instructions)
|
||||
{
|
||||
// set __zero_reg__ (reg 1 on AVR) to 0
|
||||
new_instructions.emplace_back(mos6502::OpCode::lda, Operand(Operand::Type::literal, "#$00"));
|
||||
new_instructions.emplace_back(mos6502::OpCode::sta, AVR::get_register(1));
|
||||
}
|
||||
|
||||
|
||||
void
|
||||
setup_target_cpu_state([[maybe_unused]] const std::vector<i386> &instructions, [[maybe_unused]] std::vector<mos6502> &new_instructions) {
|
||||
void setup_target_cpu_state([[maybe_unused]] const std::vector<i386> &instructions, [[maybe_unused]] std::vector<mos6502> &new_instructions)
|
||||
{
|
||||
}
|
||||
|
||||
template<typename Arch>
|
||||
void run(std::istream &input) {
|
||||
void run(std::istream &input)
|
||||
{
|
||||
std::regex Comment(R"(\s*\#.*)");
|
||||
std::regex Label(R"(^\s*(\S+):.*)");
|
||||
std::regex Directive(R"(^\s*(\..+))");
|
||||
@ -1551,17 +1564,14 @@ void run(std::istream &input) {
|
||||
int lineno = 0;
|
||||
|
||||
|
||||
|
||||
std::vector<Arch> instructions;
|
||||
|
||||
while (input.good())
|
||||
{
|
||||
while (input.good()) {
|
||||
std::string line;
|
||||
getline(input, line);
|
||||
try {
|
||||
std::smatch match;
|
||||
if (std::regex_match(line, match, Label))
|
||||
{
|
||||
if (std::regex_match(line, match, Label)) {
|
||||
instructions.emplace_back(lineno, line, ASMLine::Type::Label, match[1]);
|
||||
} else if (std::regex_match(line, match, Comment)) {
|
||||
// don't care about comments
|
||||
@ -1584,21 +1594,18 @@ void run(std::istream &input) {
|
||||
|
||||
std::set<std::string> labels;
|
||||
|
||||
for (const auto &i : instructions)
|
||||
{
|
||||
for (const auto &i : instructions) {
|
||||
if (i.type == ASMLine::Type::Label) {
|
||||
labels.insert(i.text);
|
||||
}
|
||||
}
|
||||
|
||||
std::set<std::string> used_labels{"main"};
|
||||
std::set<std::string> used_labels{ "main" };
|
||||
|
||||
for (const auto &i : instructions)
|
||||
{
|
||||
if (i.type == ASMLine::Type::Instruction)
|
||||
{
|
||||
for (const auto &i : instructions) {
|
||||
if (i.type == ASMLine::Type::Instruction) {
|
||||
|
||||
const auto check_label = [&](const auto &value){
|
||||
const auto check_label = [&](const auto &value) {
|
||||
if (labels.count(value) != 0) {
|
||||
used_labels.insert(value);
|
||||
}
|
||||
@ -1612,12 +1619,12 @@ void run(std::istream &input) {
|
||||
}
|
||||
|
||||
const auto new_labels =
|
||||
[&used_labels](){
|
||||
[&used_labels]() {
|
||||
std::map<std::string, std::string> result;
|
||||
for (const auto &l : used_labels) {
|
||||
auto newl = l;
|
||||
std::transform(newl.begin(), newl.end(), newl.begin(), [](const auto c) { return std::tolower(c); });
|
||||
newl.erase(std::remove_if(newl.begin(), newl.end(), [](const auto c){ return !std::isalnum(c); }), std::end(newl));
|
||||
newl.erase(std::remove_if(newl.begin(), newl.end(), [](const auto c) { return !std::isalnum(c); }), std::end(newl));
|
||||
|
||||
result.emplace(std::make_pair(l, newl));
|
||||
}
|
||||
@ -1629,20 +1636,17 @@ void run(std::istream &input) {
|
||||
std::clog << "Label: '" << l.first << "': '" << l.second << "'\n";
|
||||
}
|
||||
|
||||
for (auto &i : instructions)
|
||||
{
|
||||
if (i.type == ASMLine::Type::Label)
|
||||
{
|
||||
for (auto &i : instructions) {
|
||||
if (i.type == ASMLine::Type::Label) {
|
||||
std::clog << "Looking up Label: '" << i.text << "'\n";
|
||||
if (i.text == "0") {
|
||||
i.text = "-memcpy_0";
|
||||
}else {
|
||||
} else {
|
||||
i.text = new_labels.at(i.text);
|
||||
}
|
||||
}
|
||||
|
||||
if (i.operand2.value.starts_with("lo8(") || i.operand2.value.starts_with("hi8("))
|
||||
{
|
||||
if (i.operand2.value.starts_with("lo8(") || i.operand2.value.starts_with("hi8(")) {
|
||||
const auto potential_label = strip_lo_hi(i.operand2.value);
|
||||
const auto itr1 = new_labels.find(potential_label);
|
||||
if (itr1 != new_labels.end()) {
|
||||
@ -1671,8 +1675,7 @@ void run(std::istream &input) {
|
||||
|
||||
bool skip_next_instruction = false;
|
||||
std::string next_label_name;
|
||||
for (const auto &i : instructions)
|
||||
{
|
||||
for (const auto &i : instructions) {
|
||||
to_mos6502(i, new_instructions);
|
||||
|
||||
// intentionally copy so we don't invalidate the reference
|
||||
@ -1684,33 +1687,28 @@ void run(std::istream &input) {
|
||||
skip_next_instruction = false;
|
||||
}
|
||||
|
||||
if (last_instruction.type == ASMLine::Type::Directive && last_instruction.text.starts_with("skip_next_instruction"))
|
||||
{
|
||||
if (last_instruction.type == ASMLine::Type::Directive && last_instruction.text.starts_with("skip_next_instruction")) {
|
||||
skip_next_instruction = true;
|
||||
next_label_name = last_instruction.text;
|
||||
new_instructions.erase(std::next(new_instructions.begin(), static_cast<std::ptrdiff_t>(last_instruction_loc)));
|
||||
}
|
||||
}
|
||||
|
||||
while (fix_overwritten_flags(new_instructions))
|
||||
{
|
||||
while (fix_overwritten_flags(new_instructions)) {
|
||||
// do it however many times it takes
|
||||
}
|
||||
|
||||
while (optimize(new_instructions))
|
||||
{
|
||||
while (optimize(new_instructions)) {
|
||||
// do it however many times it takes
|
||||
}
|
||||
|
||||
int branch_patch_count = 0;
|
||||
while (fix_long_branches(new_instructions, branch_patch_count))
|
||||
{
|
||||
while (fix_long_branches(new_instructions, branch_patch_count)) {
|
||||
// do it however many times it takes
|
||||
}
|
||||
|
||||
|
||||
for (const auto i : new_instructions)
|
||||
{
|
||||
for (const auto i : new_instructions) {
|
||||
std::cout << i.to_string() << '\n';
|
||||
}
|
||||
}
|
||||
@ -1744,4 +1742,3 @@ int main([[maybe_unused]] const int argc, const char *argv[])
|
||||
run<i386>(input);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user