Changeset 13834


Ignore:
Timestamp:
Jun 15, 2010, 6:48:36 PM (14 years ago)
Author:
Gary Byers
Message:

Extract rs operands.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/arm/compiler/ARM/arm-disassemble.lisp

    r13789 r13834  
    6161  (let* ((opcode (adi-opcode (svref opcodes i))))
    6262    (arm-gpr-name (ldb (byte 4 16) opcode))))
     63
     64(defun extract-arm-rs-operand (opcodes i)
     65  (let* ((opcode (adi-opcode (svref opcodes i))))
     66    (arm-gpr-name (ldb (byte 4 8) opcode))))
    6367
    6468(defparameter *arm-shift-ops* #(:lsl :lsr :asr :ror))
Note: See TracChangeset for help on using the changeset viewer.