loadb method

int loadb(
  1. int address
)

Get byte from a given address.

Implementation

int loadb(int address){
  checkBounds(address);
  return memList[address]& 0xff;
}