diff --git a/compiler/avr/cpubase.pas b/compiler/avr/cpubase.pas index 798d68a0be..50c902e376 100644 --- a/compiler/avr/cpubase.pas +++ b/compiler/avr/cpubase.pas @@ -44,7 +44,7 @@ unit cpubase; type TAsmOp=(A_None, - A_ADD,A_ADC,A_ADIW,A_SUB,A_SUBI,A_SBC,A_SBCI,A_SBIW,A_AND,A_ANDI, + A_ADD,A_ADC,A_ADIW,A_SUB,A_SUBI,A_SBC,A_SBCI,A_SBRC,A_SBRS,A_SBIW,A_AND,A_ANDI, A_OR,A_ORI,A_EOR,A_COM,A_NEG,A_SBR,A_CBR,A_INC,A_DEC,A_TST,A_CLR, A_SER,A_MUL,A_MULS,A_FMUL,A_FMULS,A_FMULSU,A_RJMP,A_IJMP, A_EIJMP,A_JMP,A_RCALL,A_ICALL,R_EICALL,A_CALL,A_RET,A_RETI,A_CPSE, diff --git a/compiler/avr/itcpugas.pas b/compiler/avr/itcpugas.pas index 1d48e93011..0b2d49d92a 100644 --- a/compiler/avr/itcpugas.pas +++ b/compiler/avr/itcpugas.pas @@ -35,7 +35,7 @@ interface processor manufacturer. } gas_op2str : op2strtable = ('', - 'add','adc','adiw','sub','subi','sbc','sbci','sbiw','and','andi', + 'add','adc','adiw','sub','subi','sbc','sbci','sbrc','sbrs','sbiw','and','andi', 'or','ori','eor','com','neg','sbr','cbr','inc','dec','tst','clr', 'ser','mul','muls','fmul','fmuls','fmulsu','rjmp','ijmp', 'eijmp','jmp','rcall','icall','eicall','call','ret','reti','cpse',