sound.h 619 B

1234567891011121314151617181920212223242526272829
  1. // This is part of Pico Library
  2. // (c) Copyright 2004 Dave, All rights reserved.
  3. // (c) Copyright 2006 notaz, All rights reserved.
  4. // Free for non-commercial use.
  5. // For commercial use, separate licencing terms must be obtained.
  6. #ifdef __cplusplus
  7. extern "C" {
  8. #endif
  9. void sound_timers_and_dac(int raster);
  10. int sound_render(int offset, int length);
  11. void sound_clear(void);
  12. //int YM2612PicoTick(int n);
  13. // z80 functionality wrappers
  14. void z80_init();
  15. void z80_resetCycles();
  16. void z80_int();
  17. int z80_run(int cycles);
  18. void z80_exit();
  19. #ifdef __cplusplus
  20. } // End of extern "C"
  21. #endif