lol its in c
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
245 B

2 years ago
  1. #include "hugedriver.h"
  2. #include "sdk/hardware.h"
  3. extern const hUGESong_t song_title;
  4. void audio_init(void) {
  5. rAUDENA = 0x80;
  6. rAUDTERM = 0xff;
  7. rAUDVOL = 0x77;
  8. hUGE_init(&song_title);
  9. }
  10. void audio_reset(void) { rAUDVOL = 0; }