From 0e4f1738cd1c9ee98a9a306eb4de96704fc51028 Mon Sep 17 00:00:00 2001 From: Jonas Maebe Date: Fri, 18 Feb 2005 23:05:47 +0000 Subject: [PATCH] - removed a non-existing instruction (lcrxe) * fixed an instruction (maffs_ -> mffs) --- compiler/powerpc/cpubase.pas | 8 ++++++-- compiler/powerpc/itcpugas.pas | 8 ++++++-- 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/compiler/powerpc/cpubase.pas b/compiler/powerpc/cpubase.pas index e849924681..f2e08decf3 100644 --- a/compiler/powerpc/cpubase.pas +++ b/compiler/powerpc/cpubase.pas @@ -61,7 +61,7 @@ uses a_lfd, a_lfdu, a_lfdux, a_lfdx, a_lfs, a_lfsu, a_lfsux, a_lfsx, a_lha, a_lhau, a_lhaux, a_lhax, a_hbrx, a_lhz, a_lhzu, a_lhzux, a_lhzx, a_lmw, a_lswi, a_lswx, a_lwarx, a_lwbrx, a_lwz, a_lwzu, a_lwzux, a_lwzx, a_mcrf, - a_mcrfs, a_mcrxr, a_lcrxe, a_mfcr, a_mffs, a_maffs_, a_mfmsr, a_mfspr, a_mfsr, + a_mcrfs, a_mcrxr, a_mfcr, a_mffs, a_mffs_, a_mfmsr, a_mfspr, a_mfsr, a_mfsrin, a_mftb, a_mtcrf, a_mtfsb0, a_mtfsb1, a_mtfsf, a_mtfsf_, a_mtfsfi, a_mtfsfi_, a_mtmsr, a_mtspr, a_mtsr, a_mtsrin, a_mulhw, a_mulhw_, a_mulhwu, a_mulhwu_, a_mulli, a_mullw, a_mullw_, a_mullwo, @@ -544,7 +544,11 @@ implementation end. { $Log$ - Revision 1.96 2005-02-14 17:13:10 peter + Revision 1.97 2005-02-18 23:05:47 jonas + - removed a non-existing instruction (lcrxe) + * fixed an instruction (maffs_ -> mffs) + + Revision 1.96 2005/02/14 17:13:10 peter * truncate log Revision 1.95 2005/01/20 16:38:45 peter diff --git a/compiler/powerpc/itcpugas.pas b/compiler/powerpc/itcpugas.pas index 94110510b2..490cdb2516 100644 --- a/compiler/powerpc/itcpugas.pas +++ b/compiler/powerpc/itcpugas.pas @@ -52,7 +52,7 @@ interface 'lfd','lfdu','lfdux','lfdx','lfs','lfsu','lfsux','lfsx','lha', 'lhau','lhaux','lhax','hbrx','lhz','lhzu','lhzux','lhzx','lmw', 'lswi','lswx','lwarx','lwbrx','lwz','lwzu','lwzux','lwzx','mcrf', - 'mcrfs','mcrxr','lcrxe','mfcr','mffs','maffs.','mfmsr','mfspr','mfsr', + 'mcrfs','mcrxr','mfcr','mffs','mffs.','mfmsr','mfspr','mfsr', 'mfsrin','mftb','mtcrf','mtfsb0','mtfsb1','mtfsf','mtfsf.', 'mtfsfi','mtfsfi.','mtmsr','mtspr','mtsr','mtsrin','mulhw', 'mulhw.','mulhwu','mulhwu.','mulli','mullw','mullw.','mullwo', @@ -144,7 +144,11 @@ implementation end. { $Log$ - Revision 1.7 2005-02-14 17:13:10 peter + Revision 1.8 2005-02-18 23:05:47 jonas + - removed a non-existing instruction (lcrxe) + * fixed an instruction (maffs_ -> mffs) + + Revision 1.7 2005/02/14 17:13:10 peter * truncate log }