Files
z80/zx_ula.h
Raimon Zamora 045a2238bd - [NEW] Port function pointers now also receive port number as uint16_t
- [NEW] Implemented keyboard response to IN(0xfe), not working yet, DKW
2024-04-15 14:32:18 +02:00

12 lines
154 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();
}