git.y1.nz

gbdk-2020

GameBoy Development Kit
download: https://git.y1.nz/archives/gbdk.tar.gz
README | Files | Log | Refs | LICENSE

gbdk-lib/examples/gb/wav_sample/src/sample_player.h

      1 #ifndef SAMPLE_PLAYER_H_INCLUDE
      2 #define SAMPLE_PLAYER_H_INCLUDE
      3 
      4 #include <gb/gb.h>
      5 
      6 extern UINT8 play_bank;
      7 extern const UINT8 * play_sample;
      8 extern UINT16 play_length;
      9 
     10 void set_sample(UINT8 bank, const UINT8 * sample, UINT16 length) __nonbanked; 
     11 void play_isr(void) __nonbanked;
     12 
     13 #endif

This webpage is intended to be an accessible preview of this repository. To get a fuller picture, clone it and use the git CLI.