// Copyright 2023 Dolphin Emulator Project // SPDX-License-Identifier: GPL-2.0-or-later #pragma once #include #include #include "Common/Assembler/AssemblerShared.h" #include "Common/CommonTypes.h" namespace Common::GekkoAssembler { struct CodeBlock { CodeBlock(u32 address) : block_address(address) {} void PushBigEndian(u32 val); u32 block_address; std::vector instructions; }; // Common::GekkoAssember::Assemble - Core routine for assembling Gekko/Broadway instructions // Supports the full Gekko ISA, as well as the extended mnemonics defined by the book "PowerPC // Microprocessor Family: The Programming Environments" The input assembly is fully parsed and // assembled with a base address specified by the base_virtual_address FailureOr> Assemble(std::string_view assembly, u32 base_virtual_address); } // namespace Common::GekkoAssembler