Files
z80/zx_ula.h
Raimon Zamora 2d0b0e45cc - [NEW] EAR getter in the ULA module
- [NEW] Flash attribute implemented
- [NEW] Sound somewhat working (BEEP hangs)
2024-04-15 20:47:00 +02:00

13 lines
177 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();
}