- [NEW] Sound stops while debugging - [CHG] Now all sound related code is in the zx_ula module
18 lines
277 B
C++
18 lines
277 B
C++
#pragma once
|
|
|
|
#include <stdint.h>
|
|
|
|
namespace zx_ula
|
|
{
|
|
int port_in(int port);
|
|
void port_out(int port, int val);
|
|
|
|
uint8_t get_border_color();
|
|
uint8_t get_ear();
|
|
|
|
void sound_init();
|
|
void sound_enable();
|
|
void sound_disable();
|
|
void sound_update();
|
|
}
|