mirror of
https://github.com/V2RetroComputing/analog-firmware.git
synced 2024-11-19 02:10:53 +00:00
17 lines
336 B
C
17 lines
336 B
C
#include <pico/stdlib.h>
|
|
#include <pico/multicore.h>
|
|
#include "common/config.h"
|
|
#include "common/abus.h"
|
|
#include "common/config.h"
|
|
#include "vga/businterface.h"
|
|
#include "vga/render.h"
|
|
#include "vga/vgaout.h"
|
|
|
|
|
|
void DELAYED_COPY_CODE(vgamain)() {
|
|
vga_init();
|
|
render_init();
|
|
render_loop();
|
|
vga_stop();
|
|
}
|