From 2eaad49bf9c1fe91a48d08fafc14a22bfef61d30 Mon Sep 17 00:00:00 2001 From: Hugo Villeneuve Date: Sun, 17 Nov 2013 15:18:19 -0500 Subject: [PATCH] Fix bug with ANL instruction --- src/opcode2c.pl | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/src/opcode2c.pl b/src/opcode2c.pl index 2147aa3..67c667f 100755 --- a/src/opcode2c.pl +++ b/src/opcode2c.pl @@ -522,13 +522,7 @@ for ($i=0 ; $i< 256; $i++) { # ANL if ($insttype[$i] == 21) { - if ($instargs[$i*4+1] == 17) { - # sur des bits - print INST_IMP "cpu8051_WriteD( _PSW_, ( ( destination & source) << 7 ) );\n"; - } else { - # sur des bytes - print INST_IMP "destination &= source;\n"; - } + print INST_IMP "destination &= source;\n"; } # JZ -- 2.20.1