From c3f76bd3c76d615a9e2709d476379209f091d715 Mon Sep 17 00:00:00 2001 From: Adrian Conlon <98398945+AdrianConlon@users.noreply.github.com> Date: Sat, 14 Sep 2024 10:04:55 +0100 Subject: [PATCH] Fix misspelled exception --- M6502/Disassembler.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/M6502/Disassembler.cs b/M6502/Disassembler.cs index b708841..899686f 100644 --- a/M6502/Disassembler.cs +++ b/M6502/Disassembler.cs @@ -534,7 +534,7 @@ namespace EightBit private bool TryGetConstant(ushort value, out string name) { - return this.symbols.TryGetQualifiedEquateyValue(value, out name); + return this.symbols.TryGetQualifiedEquateValue(value, out name); } private string ConvertConstantByte(ushort address) => this.ConvertConstant(this.GetByte(address));