// (C) 2018-2023 by Folkert van Heusden // Released under MIT license #include #include #include #include "bus.h" typedef enum { BL_NONE, BL_RK05, BL_RL02 } bootloader_t; void loadbin(bus *const b, uint16_t base, const char *const file); void set_boot_loader(bus *const b, const bootloader_t which); std::optional loadTape(bus *const b, const std::string & file); void load_p11_x11(bus *const b, const std::string & file);