From cf7e442557bc52057f7a26464e9e19b1bc1184f0 Mon Sep 17 00:00:00 2001 From: Olaf Seibert Date: Sat, 13 Mar 2021 15:48:04 +0100 Subject: [PATCH] LDCFD: add missing FloatingPointProcessor instruction. --- symbols.c | 1 + 1 file changed, 1 insertion(+) diff --git a/symbols.c b/symbols.c index b1d408e..26b8aa4 100644 --- a/symbols.c +++ b/symbols.c @@ -427,6 +427,7 @@ void add_symbols( add_sym("DIVD", I_DIVD, OC_FPPGENAC, &instruction_section, &system_st); add_sym("DIVF", I_DIVF, OC_FPPGENAC, &instruction_section, &system_st); add_sym("LDCDF", I_LDCDF, OC_FPPGENAC, &instruction_section, &system_st); + add_sym("LDCFD", I_LDCFD, OC_FPPGENAC, &instruction_section, &system_st); add_sym("LDCID", I_LDCID, OC_FPPGENAC, &instruction_section, &system_st); add_sym("LDCIF", I_LDCIF, OC_FPPGENAC, &instruction_section, &system_st); add_sym("LDCLD", I_LDCLD, OC_FPPGENAC, &instruction_section, &system_st);