mirror of
https://github.com/V2RetroComputing/analog-firmware.git
synced 2024-11-05 18:05:09 +00:00
19 lines
460 B
C
19 lines
460 B
C
|
|
||
|
void vgamain();
|
||
|
void vga_businterface(uint32_t address, uint32_t value);
|
||
|
|
||
|
void z80main();
|
||
|
void z80_businterface(uint32_t address, uint32_t value);
|
||
|
|
||
|
void serialmain();
|
||
|
void serial_businterface(uint32_t address, uint32_t value);
|
||
|
|
||
|
void parallelmain();
|
||
|
void parallel_businterface(uint32_t address, uint32_t value);
|
||
|
|
||
|
void diagmain();
|
||
|
void diag_businterface(uint32_t address, uint32_t value);
|
||
|
|
||
|
void fsmain();
|
||
|
void fs_businterface(uint32_t address, uint32_t value);
|