ysyx-workbench/npc/csrc/Flow/main.cpp

14 lines
298 B
C++
Raw Normal View History

2024-04-12 01:35:41 +00:00
#include <config.hpp>
#include <spdlog/cfg/env.h>
#include <spdlog/spdlog.h>
2024-04-09 09:03:21 +00:00
#include <types.h>
2024-07-10 12:27:09 +00:00
int gdbstub_loop();
2024-04-09 09:03:21 +00:00
2024-03-29 02:35:49 +00:00
int main(int argc, char **argv, char **env) {
spdlog::cfg::load_env_levels();
config.cli_parse(argc, argv);
spdlog::debug("Configuration parsed");
2024-07-10 12:27:09 +00:00
return gdbstub_loop();
2024-03-13 06:53:31 +00:00
}