document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. ; We send the 8 default initialization data packets specified in the official documentation
  2. init_sgb_default:
  3.     ld      hl, DataSnd0
  4.     call    sgbpackettransfer
  5.     ld      hl, DataSnd1
  6.     call    sgbpackettransfer
  7.     ld      hl, DataSnd2
  8.     call    sgbpackettransfer
  9.     ld      hl, DataSnd3
  10.     call    sgbpackettransfer
  11.     ld      hl, DataSnd4
  12.     call    sgbpackettransfer
  13.     ld      hl, DataSnd5
  14.     call    sgbpackettransfer
  15.     ld      hl, DataSnd6
  16.     call    sgbpackettransfer
  17.     ld      hl, DataSnd7
  18.     call    sgbpackettransfer
  19.     ret
');