427428429430431432433434435436
*/ public final short getDByte() { int d = getD(); if ((d & ~0xff) != 0) { throw new DexException("Register D out of range: " + Hex.u8(d)); } return (short) d; }
441442443444445446447448449450
*/ public final short getDNibble() { int d = getD(); if ((d & ~0xf) != 0) { throw new DexException("Register D out of range: " + Hex.u8(d)); } return (short) d; }
455456457458459460461462463464
*/ public final short getENibble() { int e = getE(); if ((e & ~0xf) != 0) { throw new DexException("Register E out of range: " + Hex.u8(e)); } return (short) e; }