- [NEW] Port function pointers now also receive port number as uint16_t

- [NEW] Implemented keyboard response to IN(0xfe), not working yet, DKW
This commit is contained in:
2024-04-15 14:32:18 +02:00
parent 2781a50228
commit 045a2238bd
4 changed files with 100 additions and 19 deletions

View File

@@ -4,8 +4,8 @@
namespace zx_ula
{
int port_in();
void port_out(int val);
int port_in(int port);
void port_out(int port, int val);
uint8_t get_border_color();
}