document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. private void Initialise()
  2. {
  3.     ram = new byte[0xFFFF];     // (64K)
  4.         rom_kernel = new byte[8192];
  5.         rom_basic = new byte[8192];
  6.         stack_ptr = 0x01FF;         // The 256 byte stack is stored at $0100-$01FF (starts at $01FF)
  7.         PC = 0x00;                  // Program counter starts at $0
  8. }
');