287288289290291292293294295296
*/ public final short getAUnit() { int a = getA(); if ((a & ~0xffff) != 0) { throw new DexException("Register A out of range: " + Hex.u8(a)); } return (short) a; }
301302303304305306307308309310
*/ public final short getAByte() { int a = getA(); if ((a & ~0xff) != 0) { throw new DexException("Register A out of range: " + Hex.u8(a)); } return (short) a; }
315316317318319320321322323324
*/ public final short getANibble() { int a = getA(); if ((a & ~0xf) != 0) { throw new DexException("Register A out of range: " + Hex.u8(a)); } return (short) a; }
329330331332333334335336337338
*/ public final short getBUnit() { int b = getB(); if ((b & ~0xffff) != 0) { throw new DexException("Register B out of range: " + Hex.u8(b)); } return (short) b; }
343344345346347348349350351352
*/ public final short getBByte() { int b = getB(); if ((b & ~0xff) != 0) { throw new DexException("Register B out of range: " + Hex.u8(b)); } return (short) b; }
357358359360361362363364365366
*/ public final short getBNibble() { int b = getB(); if ((b & ~0xf) != 0) { throw new DexException("Register B out of range: " + Hex.u8(b)); } return (short) b; }
371372373374375376377378379380
*/ public final short getCUnit() { int c = getC(); if ((c & ~0xffff) != 0) { throw new DexException("Register C out of range: " + Hex.u8(c)); } return (short) c; }
385386387388389390391392393394
*/ public final short getCByte() { int c = getC(); if ((c & ~0xff) != 0) { throw new DexException("Register C out of range: " + Hex.u8(c)); } return (short) c; }
399400401402403404405406407408
*/ public final short getCNibble() { int c = getC(); if ((c & ~0xf) != 0) { throw new DexException("Register C out of range: " + Hex.u8(c)); } return (short) c; }
413414415416417418419420421422
*/ public final short getDUnit() { int d = getD(); if ((d & ~0xffff) != 0) { throw new DexException("Register D out of range: " + Hex.u8(d)); } return (short) d; }