analog/v2-analog-rev1/common/modes.h

21 lines
509 B
C
Raw Normal View History

2023-01-07 07:15:21 +00:00
void vgamain();
2023-01-29 15:50:12 +00:00
void vga_businterface(uint32_t address, uint32_t value);
2023-01-07 07:15:21 +00:00
void z80main();
2023-01-29 15:50:12 +00:00
void z80_businterface(uint32_t address, uint32_t value);
2023-01-07 07:15:21 +00:00
void serialmain();
2023-01-29 15:50:12 +00:00
void serial_businterface(uint32_t address, uint32_t value);
2023-01-07 07:15:21 +00:00
void parallelmain();
2023-01-29 15:50:12 +00:00
void parallel_businterface(uint32_t address, uint32_t value);
void diagmain();
2023-01-29 15:50:12 +00:00
void diag_businterface(uint32_t address, uint32_t value);
2023-01-07 07:15:21 +00:00
void fsmain();
2023-01-29 15:50:12 +00:00
void fs_businterface(uint32_t address, uint32_t value);
2023-01-07 07:15:21 +00:00
void flash_reboot() __attribute__ ((noreturn));