Get a 2-byte word from given address
address
int loadw(int address){ checkBounds(address); checkBounds(address + 1); return _getWord(address); }