Limpiando warnings

This commit is contained in:
2025-06-28 15:27:24 -04:00
parent d8e3aa16f8
commit b9d2377088
8 changed files with 18 additions and 18 deletions

View File

@@ -219,7 +219,7 @@ std::vector<Instruction> Interpreter::disassembly() const
{
std::vector<Instruction> instructions(std::size(machine_state->memory) / 2);
for (auto address = 0; address < std::size(machine_state->memory); address += 2)
for (std::size_t address = 0; address < std::size(machine_state->memory); address += 2)
{
const auto word = this->get_word(address);
instructions[address / 2] = (this->decode(word, address));