13 lines
298 B
C++
13 lines
298 B
C++
#include <config.hpp>
|
|
#include <spdlog/cfg/env.h>
|
|
#include <spdlog/spdlog.h>
|
|
#include <types.h>
|
|
|
|
int gdbstub_loop();
|
|
|
|
int main(int argc, char **argv, char **env) {
|
|
spdlog::cfg::load_env_levels();
|
|
config.cli_parse(argc, argv);
|
|
spdlog::debug("Configuration parsed");
|
|
return gdbstub_loop();
|
|
}
|