loadw method

int loadw(
  1. int address
)

Get a 2-byte word from given address

Implementation

int loadw(int address){
  checkBounds(address);
  checkBounds(address + 1);
  return _getWord(address);
}