1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-11-23 03:32:32 +00:00

Corrects namespace.

This commit is contained in:
Thomas Harte 2021-01-21 18:58:11 -05:00
parent c10c161d39
commit e5076b295b

View File

@ -119,7 +119,7 @@ namespace {
// MARK: - Decoder // MARK: - Decoder
- (void)decode:(const uint32_t *)stream { - (void)decode:(const uint32_t *)stream {
InstructionSet::PowerPC::Decoder decoder(InstructionSet::Model::MPC601); InstructionSet::PowerPC::Decoder decoder(InstructionSet::PowerPC::Model::MPC601);
for(int c = 0; c < 32; c++) { for(int c = 0; c < 32; c++) {
instructions[c] = decoder.decode(stream[c]); instructions[c] = decoder.decode(stream[c]);
} }