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