Class: AArch64::Instructions::BIC_log_shift
- Inherits:
-
Instruction
- Object
- Instruction
- AArch64::Instructions::BIC_log_shift
- Defined in:
- lib/aarch64/instructions/bic_log_shift.rb
Overview
BIC (shifted register) – A64 Bitwise Bit Clear (shifted register) BIC <Wd>, <Wn>, <Wm><shift> #<amount> BIC <Xd>, <Xn>, <Xm><shift> #<amount>
Instance Method Summary collapse
- #encode(_) ⇒ Object
-
#initialize(d, n, m, shift, amount, sf) ⇒ BIC_log_shift
constructor
A new instance of BIC_log_shift.
Constructor Details
#initialize(d, n, m, shift, amount, sf) ⇒ BIC_log_shift
Returns a new instance of BIC_log_shift.
8 9 10 11 12 13 14 15 |
# File 'lib/aarch64/instructions/bic_log_shift.rb', line 8 def initialize d, n, m, shift, amount, sf @d = check_mask(d, 0x1f) @n = check_mask(n, 0x1f) @m = check_mask(m, 0x1f) @shift = check_mask(shift, 0x03) @amount = check_mask(amount, 0x3f) @sf = check_mask(sf, 0x01) end |
Instance Method Details
#encode(_) ⇒ Object
17 18 19 |
# File 'lib/aarch64/instructions/bic_log_shift.rb', line 17 def encode _ BIC_log_shift(@sf, @shift, @m, @amount, @n, @d) end |