| ... | @@ -886,11 +886,11 @@ pub const Instruction = union(enum) { | ... | @@ -886,11 +886,11 @@ pub const Instruction = union(enum) { |
| 886 | return dataProcessing(cond, .mov, 1, rd, .r0, op2); | 886 | return dataProcessing(cond, .mov, 1, rd, .r0, op2); |
| 887 | } | 887 | } |
| 888 | | 888 | |
| 889 | pub fn bic(cond: Condition, rd: Register, op2: Operand) Instruction { | 889 | pub fn bic(cond: Condition, rd: Register, rn: Register, op2: Operand) Instruction { |
| 890 | return dataProcessing(cond, .bic, 0, rd, rn, op2); | 890 | return dataProcessing(cond, .bic, 0, rd, rn, op2); |
| 891 | } | 891 | } |
| 892 | | 892 | |
| 893 | pub fn bics(cond: Condition, rd: Register, op2: Operand) Instruction { | 893 | pub fn bics(cond: Condition, rd: Register, rn: Register, op2: Operand) Instruction { |
| 894 | return dataProcessing(cond, .bic, 1, rd, rn, op2); | 894 | return dataProcessing(cond, .bic, 1, rd, rn, op2); |
| 895 | } | 895 | } |
| 896 | | 896 | |